html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navbar */
.navbar {
    background: #2c3e50 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
    margin-right: 8px;
}

.nav-link {
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: white !important;
}

/* Hero section */
h1 {
    font-weight: 600;
    color: #2c3e50;
    font-size: 2.5rem;
}

/* Card styles */
.card {
    border: 1px solid #e0e0e0 !important;
    background: white;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.card-text {
    color: #666;
    font-size: 0.9rem;
}

/* Icons */
/* Removed animations */

/* Buttons */
.btn {
    font-weight: 500;
}

.btn:hover {
    opacity: 0.9;
}

.container {
    max-width: 1200px;
}

.card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 0 !important;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.btn {
    border-radius: 0 !important;
    padding: 10px 25px;
    font-weight: 500;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.navbar {
    border-radius: 0 !important;
}

.form-control, .form-select {
    border-radius: 0 !important;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
}

.nav-link:hover {
    color: white !important;
}

.input-group .form-control:focus {
    border-color: #f74652;
    box-shadow: 0 0 0 0.2rem rgba(247, 70, 82, 0.25);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

code {
    background-color: #f1f1f1;
    padding: 2px 6px;
    border-radius: 2px;
    font-family: 'Courier New', monospace;
}

.badge {
    border-radius: 0 !important;
}

.alert {
    border-radius: 0 !important;
}

.modal-content {
    border-radius: 0 !important;
}

.text-brand {
    color: #f74652;
}
