* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --bg-tertiary: #333333;
    --accent-gold: #d4af37;
    --accent-white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #404040;
    --status-active: #4ade80;
    --status-pending: #f59e0b;
    --status-closed: #6b7280;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background-color: var(--bg-primary);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('main.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Login Screen */
.login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 9999;
}

.login-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
}

.login-card {
    display: flex;
    width: 900px;
    height: 550px;
    background: rgba(26, 26, 26, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: loginFadeIn 0.8s ease-out;
    backdrop-filter: blur(20px);
}

/* Left: Image */
.login-image {
    flex: 1;
    background-image: url('login-image.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.login-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.login-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(18, 18, 18, 0.3) 0%, rgba(30, 30, 30, 0.5) 100%),
        linear-gradient(to bottom, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Right: Form */
.login-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3rem;
    background: rgba(26, 26, 26, 0.5);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.login-logo-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: loginLogoGlow 2s ease-in-out infinite;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-gold), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.login-form-group {
    position: relative;
}

.login-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-primary);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.login-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    box-shadow: 
        0 0 0 3px rgba(212, 175, 55, 0.15),
        inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.login-input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 1px;
    transition: width 0.3s ease-out;
}

.login-input:focus ~ .login-input-border {
    width: 100%;
}

.login-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-gold);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-input:hover {
    transform: scale(1.1);
}

.checkbox-label {
    cursor: pointer;
    color: var(--text-secondary);
    user-select: none;
    transition: color 0.2s ease;
}

.checkbox-label:hover {
    color: var(--text-primary);
}

.login-btn {
    background: linear-gradient(135deg, var(--accent-gold), #e5c158);
    color: #0a0a0a;
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.3),
        0 0 20px rgba(212, 175, 55, 0.1);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.login-btn:active {
    transform: translateY(-1px);
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    text-align: center;
    min-height: 1.2rem;
    animation: slideDown 0.3s ease-out;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes loginFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes loginLogoGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.9), rgba(51, 51, 51, 0.9));
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--accent-gold);
    font-size: 1.75rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-add-debtor {
    background: linear-gradient(135deg, var(--accent-gold), #e5c158);
    color: var(--bg-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-add-debtor:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.btn-add-debtor:active {
    transform: translateY(0);
}

.btn-refresh {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 0.65rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-refresh:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-refresh:active {
    transform: scale(0.95);
}

.btn-refresh-icon {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.btn-refresh-icon.spinning {
    animation: spin 1s linear infinite;
}

.btn-logout {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.65rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-logout:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* Main Content */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Dashboard Statistics */
.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    animation: slideUp 0.6s ease-out;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Section Title */
.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Debtors List */
.debtors-section {
    margin-top: 2rem;
}

.debtors-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.debtor-card {
    background: rgba(42, 42, 42, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    animation: slideUp 0.5s ease-out;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.debtor-card:hover {
    border-color: var(--accent-gold);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.debtor-card.blacklist {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
    animation: pulse-red 2s cubic-bezier(0.4, 0, 0.6, 1) infinite, slideUp 0.5s ease-out;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.blacklist-warning {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 1.5s ease-in-out infinite;
}

.blacklist-notice {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 600;
    color: #ef4444;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.debtor-info {
    flex: 1;
}

.debtor-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.debtor-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.debtor-meta-top {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.debtor-ticket {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.debtor-ticket-label {
    color: var(--text-secondary);
}

.debtor-ticket-value {
    color: var(--accent-gold);
    font-weight: 600;
}

.debtor-date-issued {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.debtor-date-issued-label {
    color: var(--text-secondary);
}

.debtor-date-issued-value {
    color: var(--text-primary);
    font-weight: 500;
}

.debtor-comment {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.debtor-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background-color: rgba(74, 222, 128, 0.15);
    color: var(--status-active);
}

.status-pending {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--status-pending);
}

.status-closed {
    background-color: rgba(107, 114, 128, 0.15);
    color: var(--status-closed);
}

.debtor-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.debtor-actions {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

.btn-edit {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-edit:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-delete {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-delete:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-secondary);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    font-size: 1.1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.75rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--accent-gold);
}

/* Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-gold), #e5c158);
    color: var(--bg-primary);
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes pulse-red {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (min-width: 1200px) {
    .login-image {
        display: block;
    }

    .login-card {
        width: 900px;
        height: 550px;
    }
}

@media (max-width: 1199px) {
    .login-card {
        width: 90%;
        max-width: 800px;
        height: auto;
        flex-direction: column;
    }

    .login-image {
        display: none;
    }

    .login-form-section {
        padding: 3rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .login-card {
        width: 95%;
        max-width: 500px;
        height: auto;
        flex-direction: column;
    }

    .login-image {
        display: block;
        height: 250px;
        order: -1;
    }

    .login-form-section {
        padding: 2.5rem 2rem;
    }

    .login-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .login-subtitle {
        font-size: 0.85rem;
    }

    .login-input {
        padding: 0.9rem 1rem;
        font-size: 1rem;
    }

    .login-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo {
        justify-content: center;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-add-debtor,
    .btn-refresh,
    .btn-logout {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .main {
        padding: 1rem;
    }

    .dashboard {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .debtor-card {
        flex-direction: column;
        gap: 1rem;
    }

    .debtor-actions {
        flex-direction: row;
        width: 100%;
    }

    .btn-edit,
    .btn-delete {
        flex: 1;
        padding: 0.75rem;
    }

    .blacklist-warning {
        position: static;
        margin-bottom: 0.75rem;
        display: inline-block;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .debtor-name {
        font-size: 1.1rem;
    }

    .debtor-amount {
        font-size: 1.5rem;
    }

    .debtor-meta-top {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .login-card {
        width: 95%;
        border-radius: 12px;
    }

    .login-image {
        height: 200px;
    }

    .login-form-section {
        padding: 2rem 1.5rem;
    }

    .login-title {
        font-size: 1.25rem;
        letter-spacing: 1.5px;
    }

    .login-logo-icon {
        font-size: 2.5rem;
    }

    .login-subtitle {
        font-size: 0.8rem;
    }

    .login-form {
        gap: 1.5rem;
    }

    .login-input {
        padding: 0.85rem 1rem;
        font-size: 1rem;
    }

    .login-btn {
        padding: 0.95rem 1.5rem;
        font-size: 0.9rem;
    }

    .header {
        padding: 1rem 0;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .main {
        padding: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .debtor-card {
        padding: 1rem;
    }

    .debtor-name {
        font-size: 1rem;
    }

    .debtor-amount {
        font-size: 1.25rem;
    }

    .debtor-comment {
        font-size: 0.85rem;
    }

    .btn-edit,
    .btn-delete {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }

    .modal-content {
        padding: 1.25rem;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }
}
