.breakModalInput{
    width: 100%;
    min-height: 60px;
}

/* ============================================
   BREAK MODAL STYLES (SweetAlert)
   ============================================ */

/* Break Modal Content */
.aio-break-modal-content {
    text-align: left;
    padding: 10px 0;
}

.aio-break-field {
    margin-bottom: 16px;
}

.aio-break-field-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 8px;
}

.aio-break-field-label i {
    color: #f59e0b;
    margin-right: 6px;
}

.aio-break-select,
.aio-break-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    background: #fff;
    transition: all 0.2s ease;
}

.aio-break-select:focus,
.aio-break-input:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.aio-break-empty {
    text-align: center;
    padding: 20px;
    color: #64748b;
    font-size: 14px;
}

.aio-break-empty i {
    margin-right: 8px;
    color: #94a3b8;
}

.aio-break-icon {
    color: #f59e0b;
}

/* Breaks Table */
.aio-breaks-table-container {
    margin-bottom: 20px;
}

.aio-breaks-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.aio-breaks-table thead {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.aio-breaks-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #fff;
    font-size: 13px;
}

.aio-breaks-table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.aio-breaks-table thead th:last-child {
    border-radius: 0 8px 0 0;
    text-align: center;
}

.aio-breaks-table thead th i {
    margin-right: 6px;
}

.aio-breaks-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.15s ease;
}

.aio-breaks-table tbody tr:hover {
    background: #f8fafc;
}

.aio-breaks-table tbody td {
    padding: 12px 16px;
    color: #334155;
}

.aio-break-actions {
    text-align: center;
}

.aio-break-empty-cell {
    color: #94a3b8;
    font-style: italic;
}

.aio-break-no-data {
    text-align: center;
    padding: 30px !important;
    color: #64748b;
}

.aio-break-no-data i {
    margin-right: 8px;
    color: #94a3b8;
}

/* Break Buttons */
.aio-break-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.aio-break-btn-edit {
    padding: 6px 10px;
    background: #f1f5f9;
    color: #64748b;
    margin: 0 2px;
}

.aio-break-btn-edit:hover {
    background: #3b82f6;
    color: #fff;
}

.aio-break-btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.aio-break-btn-primary:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.aio-break-btn-secondary {
    background: #64748b;
    color: #fff;
}

.aio-break-btn-secondary:hover {
    background: #475569;
}

/* Break Modal Footer */
.aio-break-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

/* Break Edit Form */
.aio-break-edit-form {
    text-align: left;
    padding: 10px 0;
}

/* SweetAlert Customizations for Breaks */
.aio-swal-popup {
    border-radius: 16px !important;
}

.aio-swal-large {
    max-width: 700px !important;
}

.aio-swal-html {
    margin: 0 !important;
    padding: 20px !important;
}

.aio-swal-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

/* Loader */
.aio-loader {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top-color: #f59e0b;
    border-radius: 50%;
    animation: aio-spin 0.8s linear infinite;
}

@keyframes aio-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Frontend Break Button Styling */
#breakButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

#breakButton.take_break {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

#breakButton.take_break:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

#breakButton.end_break {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

#breakButton.end_break:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

#breakResultDiv {
    margin-top: 12px;
    padding: 12px 16px;    
    border-radius: 8px;
    color: #92400e;
    font-size: 14px;
}

#breakResultDiv i {
    margin-right: 8px;
}