.min-h-20 {
    height: 10vh !important;
}

.min-w-20 {
    width: 20vw !important;
}

.custom-py-a {
    padding-top: 0.40rem !important;
    padding-bottom: 0.40rem !important;
}

.custom-py-b {
    /* padding-top: 0rem !important;
    padding-bottom: 0rem !important; */
}

td {
    /* Basic cell styling for visibility */
    padding: 10px;
    border: 1px solid #ccc;
}

td.inner-glow {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.7);
}

.link-cell {
    cursor: pointer;
    transition: background 0.2s;
}

.link-cell:hover {
    background: rgba(0, 0, 0, 0.05);
}

.timepicker-input {
    padding: 0.4rem;
    height: 100%;
    text-align: center;
    background-color: transparent !important;
}

.timepicker-input:focus {
    box-shadow: none !important;
    outline: none !important;
    background-color: #eef5ff !important;
    /* subtle highlight like Excel */
}

.table td {
    vertical-align: middle;
}

/* Wrapper class for table cells that contain input fields */
.table-fillable {
    padding: 0 !important;
    cursor: pointer !important;
    vertical-align: middle;
}

.cursor-pointer {
    cursor: pointer !important;
}

/* Input inside fillable cells */
.table-fillable .form-control {
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0.4rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Focus state: subtle Excel-like highlight */
.table-fillable .form-control:focus {
    outline: none;
    box-shadow: none;
    background-color: #eef5ff;
}

/* Remove number arrows for numeric inputs */
.table-fillable .form-control::-webkit-outer-spin-button,
.table-fillable .form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.table-fillable .form-control[type=number] {
    -moz-appearance: textfield;
}

.zoom-container {
    max-height: 80vh;
    overflow: auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
}

.zoomable-img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.zoomable-img.zoomed {
    cursor: zoom-out;
    transform: scale(2);
}