﻿/* ============================================
   INSTITUTIONAL DATA CAPTURE FORM STYLES
   SAFE VERSION - No interference with Telerik JavaScript
   Following institutional design pattern
   Colors: #101097 (blue), #cf152d (red)
   Typography: Indivisa Text Sans family
   ============================================ */

/* Main Container */
.data-capture-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    background: #f8f9fa;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif;
    color: #333;
}

/* Section Header */
.section-header {
    background: #101097;
    padding: 20px 24px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    border-bottom: 3px solid #cf152d;
}

.section-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    font-family: "Indivisa Text Sans Black", "Segoe UI", sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .section-title span {
        color: #cf152d;
        font-size: 24px;
    }

    .section-title i {
        font-size: 14px;
        font-weight: 400;
        opacity: 0.9;
        margin-left: 8px;
    }

    .section-title img {
        margin-left: auto;
    }

/* Instructions */
.section-instructions {
    background: white;
    padding: 20px 24px;
    border-left: 4px solid #cf152d;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

    .section-instructions p {
        margin: 0;
        line-height: 1.6;
        color: #4b5563;
        font-size: 15px;
    }

    .section-instructions b {
        color: #cf152d;
        font-weight: 600;
    }

/* Form Rows */
.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

    .form-row.single-column {
        flex-direction: column;
    }

/* Form Fields */
.form-field {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-field.full-width {
        width: 100%;
        min-width: 100%;
    }

/* Labels */
.field-label {
    font-size: 14px;
    font-weight: 600;
    color: #101097;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif;
    margin-bottom: 4px;
}

    .field-label.inline-label {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        font-weight: 500;
        color: #374151;
    }

/* Input Fields */
.field-input {
    display: flex;
    flex-direction: column;
}

.form-textbox {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif;
    background: white;
    color: #1f2937;
}

    .form-textbox:focus {
        outline: none;
        border-color: #101097;
    }

    .form-textbox:hover {
        border-color: #cbd5e1;
    }

/* Select Dropdowns */
.form-select {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif;
    background: white;
    color: #1f2937;
    cursor: pointer;
}

    .form-select:focus {
        outline: none;
        border-color: #101097;
    }

    .form-select:hover {
        border-color: #cbd5e1;
    }

.form-select-inline {
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif;
    background: white;
    color: #1f2937;
    cursor: pointer;
    min-width: 80px;
}

    .form-select-inline:focus {
        outline: none;
        border-color: #101097;
    }

/* Radio Button List */
.radio-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .radio-list li {
        display: flex;
        align-items: center;
        gap: 8px;
    }

.form-radio {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #101097;
}

.radio-list label {
    font-size: 15px;
    color: #374151;
    cursor: pointer;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif;
}

    .radio-list label:hover {
        color: #101097;
    }

/* Action Buttons */
.form-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #e5e7eb;
}

/* Accept Button (Guardar) */
.accept-button {
    background: #101097 !important;
    color: white !important;
    border: 2px solid #cf152d !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    cursor: pointer !important;
    min-width: 200px !important;
}

    .accept-button:hover {
        background: #cf152d !important;
        border-color: #101097 !important;
    }

/* Logout Button (TerminarCaptura) */
.logout-button {
    background: #cf152d !important;
    color: white !important;
    border: 2px solid #101097 !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    cursor: pointer !important;
    min-width: 200px !important;
}

    .logout-button:hover {
        background: #101097 !important;
        border-color: #cf152d !important;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .data-capture-container {
        padding: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .form-field {
        min-width: 100%;
    }

    .section-title {
        font-size: 18px;
        flex-wrap: wrap;
    }

    .form-actions {
        flex-direction: column;
    }

    .accept-button,
    .logout-button {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-header {
        padding: 16px;
    }

    .section-instructions {
        padding: 16px;
    }

    .field-label.inline-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .form-select-inline {
        width: 100%;
    }
}

/* ============================================
   ALERT NOTIFICATION STYLES
   SAFE VERSION - No animations
   ============================================ */

/* Important Alert - Main Style */
.alert-important {
    display: block !important;
    padding: 16px 20px 16px 60px !important;
    background: #cf152d !important;
    border: 3px solid #101097 !important;
    border-radius: 12px !important;
    color: white !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    margin: 20px 0 !important;
    position: relative !important;
    text-align: left !important;
}

    /* Alert Icon - NO ANIMATION */
    .alert-important::before {
        content: "⚠" !important;
        position: absolute !important;
        left: 20px !important;
        top: 50% !important;
        margin-top: -14px !important;
        font-size: 28px !important;
        font-weight: bold !important;
        color: #fff !important;
    }

/* Alert Variants */
.alert-warning {
    background: #f59e0b !important;
    border-color: #101097 !important;
}

    .alert-warning::before {
        content: "⚠" !important;
    }

.alert-info {
    background: #101097 !important;
    border-color: #cf152d !important;
}

    .alert-info::before {
        content: "ℹ" !important;
    }

.alert-success {
    background: #10b981 !important;
    border-color: #101097 !important;
}

    .alert-success::before {
        content: "✓" !important;
    }

/* Responsive Alert */
@media (max-width: 768px) {
    .alert-important {
        font-size: 14px !important;
        padding: 14px 16px 14px 50px !important;
    }

        .alert-important::before {
            font-size: 24px !important;
            left: 16px !important;
        }
}

/* ============================================
   CRUD OPERATION BUTTONS
   SAFE VERSION - No transforms or complex effects
   ============================================ */

/* NEW BUTTON - Green - Normal Size */
.btn-new,
input.btn-new[type="submit"],
input.btn-new[type="button"],
a.btn-new,
button.btn-new {
    background: #10b981 !important;
    color: white !important;
    border: 2px solid #047857 !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    cursor: pointer !important;
    min-width: 120px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

    .btn-new:hover,
    input.btn-new[type="submit"]:hover,
    input.btn-new[type="button"]:hover,
    a.btn-new:hover,
    button.btn-new:hover {
        background: #059669 !important;
        border-color: #065f46 !important;
        color: white !important;
        text-decoration: none !important;
    }

/* NEW BUTTON - Green - Small Size */
.btn-new-sm,
input.btn-new-sm[type="submit"],
input.btn-new-sm[type="button"],
a.btn-new-sm,
button.btn-new-sm {
    background: #10b981 !important;
    color: white !important;
    border: 2px solid #047857 !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    cursor: pointer !important;
    min-width: 90px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

    .btn-new-sm:hover,
    input.btn-new-sm[type="submit"]:hover,
    input.btn-new-sm[type="button"]:hover,
    a.btn-new-sm:hover,
    button.btn-new-sm:hover {
        background: #059669 !important;
        border-color: #065f46 !important;
        color: white !important;
        text-decoration: none !important;
    }

/* EDIT BUTTON - Cyan - Normal Size */
.btn-edit,
input.btn-edit[type="submit"],
input.btn-edit[type="button"],
a.btn-edit,
button.btn-edit {
    background: #06b6d4 !important;
    color: white !important;
    border: 2px solid #0e7490 !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    cursor: pointer !important;
    min-width: 120px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

    .btn-edit:hover,
    input.btn-edit[type="submit"]:hover,
    input.btn-edit[type="button"]:hover,
    a.btn-edit:hover,
    button.btn-edit:hover {
        background: #0891b2 !important;
        border-color: #155e75 !important;
        color: white !important;
        text-decoration: none !important;
    }

/* EDIT BUTTON - Cyan - Small Size */
.btn-edit-sm,
input.btn-edit-sm[type="submit"],
input.btn-edit-sm[type="button"],
a.btn-edit-sm,
button.btn-edit-sm {
    background: #06b6d4 !important;
    color: white !important;
    border: 2px solid #0e7490 !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    cursor: pointer !important;
    min-width: 90px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

    .btn-edit-sm:hover,
    input.btn-edit-sm[type="submit"]:hover,
    input.btn-edit-sm[type="button"]:hover,
    a.btn-edit-sm:hover,
    button.btn-edit-sm:hover {
        background: #0891b2 !important;
        border-color: #155e75 !important;
        color: white !important;
        text-decoration: none !important;
    }

/* DELETE BUTTON - Red - Normal Size */
.btn-delete,
input.btn-delete[type="submit"],
input.btn-delete[type="button"],
a.btn-delete,
button.btn-delete {
    background: #ef4444 !important;
    color: white !important;
    border: 2px solid #b91c1c !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    cursor: pointer !important;
    min-width: 120px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

    .btn-delete:hover,
    input.btn-delete[type="submit"]:hover,
    input.btn-delete[type="button"]:hover,
    a.btn-delete:hover,
    button.btn-delete:hover {
        background: #dc2626 !important;
        border-color: #991b1b !important;
        color: white !important;
        text-decoration: none !important;
    }

/* DELETE BUTTON - Red - Small Size */
.btn-delete-sm,
input.btn-delete-sm[type="submit"],
input.btn-delete-sm[type="button"],
a.btn-delete-sm,
button.btn-delete-sm {
    background: #ef4444 !important;
    color: white !important;
    border: 2px solid #b91c1c !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    cursor: pointer !important;
    min-width: 90px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

    .btn-delete-sm:hover,
    input.btn-delete-sm[type="submit"]:hover,
    input.btn-delete-sm[type="button"]:hover,
    a.btn-delete-sm:hover,
    button.btn-delete-sm:hover {
        background: #dc2626 !important;
        border-color: #991b1b !important;
        color: white !important;
        text-decoration: none !important;
    }

/* EXIT BUTTON - Gray - Normal Size */
.btn-exit,
input.btn-exit[type="submit"],
input.btn-exit[type="button"],
a.btn-exit,
button.btn-exit {
    background: #6b7280 !important;
    color: white !important;
    border: 2px solid #374151 !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    cursor: pointer !important;
    min-width: 120px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

    .btn-exit:hover,
    input.btn-exit[type="submit"]:hover,
    input.btn-exit[type="button"]:hover,
    a.btn-exit:hover,
    button.btn-exit:hover {
        background: #4b5563 !important;
        border-color: #1f2937 !important;
        color: white !important;
        text-decoration: none !important;
    }

/* EXIT BUTTON - Gray - Small Size */
.btn-exit-sm,
input.btn-exit-sm[type="submit"],
input.btn-exit-sm[type="button"],
a.btn-exit-sm,
button.btn-exit-sm {
    background: #6b7280 !important;
    color: white !important;
    border: 2px solid #374151 !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    cursor: pointer !important;
    min-width: 90px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

    .btn-exit-sm:hover,
    input.btn-exit-sm[type="submit"]:hover,
    input.btn-exit-sm[type="button"]:hover,
    a.btn-exit-sm:hover,
    button.btn-exit-sm:hover {
        background: #4b5563 !important;
        border-color: #1f2937 !important;
        color: white !important;
        text-decoration: none !important;
    }

/* Button Group Container */
.btn-group {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

/* Responsive CRUD Buttons */
@media (max-width: 768px) {
    .btn-new,
    .btn-edit,
    .btn-delete,
    .btn-exit,
    input.btn-new[type="submit"],
    input.btn-edit[type="submit"],
    input.btn-delete[type="submit"],
    input.btn-exit[type="submit"],
    input.btn-new[type="button"],
    input.btn-edit[type="button"],
    input.btn-delete[type="button"],
    input.btn-exit[type="button"],
    a.btn-new,
    a.btn-edit,
    a.btn-delete,
    a.btn-exit,
    button.btn-new,
    button.btn-edit,
    button.btn-delete,
    button.btn-exit {
        width: 100% !important;
        min-width: 100% !important;
    }

    .btn-group {
        flex-direction: column !important;
        width: 100% !important;
    }
}

/* ============================================
   TELERIK RADGRID STYLES
   SAFE VERSION - Minimal interference with Telerik JavaScript
   ============================================ */

/* RadGrid Main Container */
.RadGrid,
div.RadGrid {
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    background: white !important;
    margin: 20px 0 !important;
    width: 100% !important;
}

    /* RadGrid Table */
    .RadGrid table,
    .RadGrid .rgMasterTable {
        width: 100% !important;
        border-collapse: collapse !important;
        font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
    }

    /* RadGrid Header */
    .RadGrid .rgHeader,
    .RadGrid th.rgHeader {
        background: #101097 !important;
        color: white !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        padding: 16px 12px !important;
        text-align: left !important;
        border-bottom: 3px solid #cf152d !important;
        font-family: "Indivisa Text Sans Black", "Segoe UI", sans-serif !important;
    }

        /* RadGrid Header Links */
        .RadGrid .rgHeader a {
            color: white !important;
            text-decoration: none !important;
            font-weight: 700 !important;
        }

            .RadGrid .rgHeader a:hover {
                color: #cf152d !important;
            }

    /* RadGrid Normal Row - NO background/color to allow code-behind */
    .RadGrid .rgRow,
    .RadGrid tr.rgRow td {
        padding: 14px 12px !important;
        border-bottom: 1px solid #e5e7eb !important;
        font-size: 14px !important;
    }

    /* RadGrid Alternate Row - NO background/color to allow code-behind */
    .RadGrid .rgAltRow,
    .RadGrid tr.rgAltRow td {
        padding: 14px 12px !important;
        border-bottom: 1px solid #e5e7eb !important;
        font-size: 14px !important;
    }

    /* RadGrid Hovered Row - NO background/color to allow code-behind */
    .RadGrid .rgHoveredRow,
    .RadGrid tr.rgHoveredRow td {
        cursor: pointer !important;
    }

    /* RadGrid Selected Row - NO background/color to allow code-behind */
    .RadGrid .rgSelectedRow,
    .RadGrid tr.rgSelectedRow td {
        font-weight: 600 !important;
    }

    /* RadGrid Command Cell */
    .RadGrid .rgCommandCell,
    .RadGrid td.rgCommandCell {
        text-align: center !important;
        padding: 12px 8px !important;
        white-space: nowrap !important;
    }

        /* RadGrid Command Buttons */
        .RadGrid .rgCommandCell a,
        .RadGrid .rgCommandCell input[type="button"],
        .RadGrid .rgCommandCell button {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            padding: 8px 16px !important;
            margin: 0 4px !important;
            border-radius: 6px !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
            text-decoration: none !important;
            cursor: pointer !important;
            border: 2px solid transparent !important;
        }

            /* Edit Command Button */
            .RadGrid .rgCommandCell a[href*="Edit"],
            .RadGrid .rgCommandCell input[value*="Edit"],
            .RadGrid .rgCommandCell input[value*="Editar"] {
                background: #06b6d4 !important;
                color: white !important;
                border-color: #0e7490 !important;
            }

                .RadGrid .rgCommandCell a[href*="Edit"]:hover,
                .RadGrid .rgCommandCell input[value*="Edit"]:hover,
                .RadGrid .rgCommandCell input[value*="Editar"]:hover {
                    background: #0891b2 !important;
                }

            /* Delete Command Button */
            .RadGrid .rgCommandCell a[href*="Delete"],
            .RadGrid .rgCommandCell input[value*="Delete"],
            .RadGrid .rgCommandCell input[value*="Eliminar"],
            .RadGrid .rgCommandCell input[value*="Borrar"] {
                background: #ef4444 !important;
                color: white !important;
                border-color: #b91c1c !important;
            }

                .RadGrid .rgCommandCell a[href*="Delete"]:hover,
                .RadGrid .rgCommandCell input[value*="Delete"]:hover,
                .RadGrid .rgCommandCell input[value*="Eliminar"]:hover {
                    background: #dc2626 !important;
                }

            /* Update Command Button */
            .RadGrid .rgCommandCell a[href*="Update"],
            .RadGrid .rgCommandCell input[value*="Update"],
            .RadGrid .rgCommandCell input[value*="Actualizar"],
            .RadGrid .rgCommandCell input[value*="Guardar"] {
                background: #10b981 !important;
                color: white !important;
                border-color: #047857 !important;
            }

                .RadGrid .rgCommandCell a[href*="Update"]:hover,
                .RadGrid .rgCommandCell input[value*="Update"]:hover,
                .RadGrid .rgCommandCell input[value*="Actualizar"]:hover {
                    background: #059669 !important;
                }

            /* Cancel Command Button */
            .RadGrid .rgCommandCell a[href*="Cancel"],
            .RadGrid .rgCommandCell input[value*="Cancel"],
            .RadGrid .rgCommandCell input[value*="Cancelar"] {
                background: #6b7280 !important;
                color: white !important;
                border-color: #374151 !important;
            }

                .RadGrid .rgCommandCell a[href*="Cancel"]:hover,
                .RadGrid .rgCommandCell input[value*="Cancel"]:hover,
                .RadGrid .rgCommandCell input[value*="Cancelar"]:hover {
                    background: #4b5563 !important;
                }

    /* RadGrid Pager */
    .RadGrid .rgPager,
    .RadGrid .rgFooter {
        background: #f9fafb !important;
        padding: 16px 12px !important;
        border-top: 2px solid #cf152d !important;
        text-align: center !important;
        font-size: 14px !important;
        color: #374151 !important;
    }

        /* RadGrid Pager Numbers */
        .RadGrid .rgPager a,
        .RadGrid .rgPager span {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            min-width: 36px !important;
            height: 36px !important;
            margin: 0 4px !important;
            padding: 8px !important;
            border-radius: 6px !important;
            font-weight: 600 !important;
            font-family: "Indivisa Text Sans", "Segoe UI", sans-serif !important;
            text-decoration: none !important;
        }

        .RadGrid .rgPager a {
            background: white !important;
            color: #101097 !important;
            border: 2px solid #e5e7eb !important;
        }

            .RadGrid .rgPager a:hover {
                background: #101097 !important;
                color: white !important;
                border-color: #101097 !important;
            }

        /* Current Page Number */
        .RadGrid .rgPager .rgCurrentPage,
        .RadGrid .rgPager span.rgCurrentPage {
            background: #cf152d !important;
            color: white !important;
            border: 2px solid #cf152d !important;
            font-weight: 700 !important;
        }

    /* RadGrid No Records Template */
    .RadGrid .rgNoRecords {
        padding: 40px 20px !important;
        text-align: center !important;
        background: #fef3c7 !important;
        color: #92400e !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        border: 2px dashed #f59e0b !important;
        border-radius: 8px !important;
        margin: 20px !important;
    }

/* Responsive RadGrid */
@media (max-width: 768px) {
    .RadGrid,
    div.RadGrid {
        border-radius: 8px !important;
        overflow-x: auto !important;
    }

        .RadGrid .rgHeader,
        .RadGrid th.rgHeader {
            font-size: 12px !important;
            padding: 12px 8px !important;
        }

        .RadGrid .rgRow,
        .RadGrid .rgAltRow {
            font-size: 13px !important;
            padding: 10px 8px !important;
        }

        .RadGrid .rgCommandCell a,
        .RadGrid .rgCommandCell input[type="button"],
        .RadGrid .rgCommandCell button {
            padding: 6px 12px !important;
            font-size: 12px !important;
            margin: 2px !important;
        }
}
