/* Modern body styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Ubuntu', 'Roboto', 'Oxygen', 'Cantarell', sans-serif;
    font-size: 1rem;
    /* 16px base */
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#body {
    padding-top: 55px !important;
    padding-bottom: 20px;
    min-height: calc(100vh - 75px);
}

@media screen and (min-width: 600px) {
    #body {
        padding-top: 65px !important;
        padding-bottom: 70px !important;
    }
}

@media screen and (max-width: 1023.98px) {
    #body {
        padding-top: 70px !important;
    }
}

@media screen and (max-width: 575.98px) {
    #body {
        padding-top: 70px !important;
    }
}

/* Modern container styling */
.container {
    max-width: 1400px;
}

/* Improved spacing and typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Ubuntu-Bold, sans-serif;
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: inherit;
    /* Inherit from parent */
}

h1 {
    font-size: 2rem;
}

/* 32px */
h2 {
    font-size: 1.75rem;
}

/* 28px */
h3 {
    font-size: 1.5rem;
}

/* 24px */
h4 {
    font-size: 1.25rem;
}

/* 20px */
h5 {
    font-size: 1.125rem;
}

/* 18px */
h6 {
    font-size: 1rem;
}

/* 16px */

/* Modern card styling */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Modern button styling */
.btn {
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    font-size: 0.9375rem;
    /* 15px */
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #827ffe 0%, #a78bfa 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(130, 127, 254, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #e081ea 0%, #e4465a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2d3748;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #96e0dd 0%, #fcc4d5 100%);
    transform: translateY(-2px);
}