.navbar {
    background-color: #b8860b !important;
    border-bottom: 1px solid #a97408;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-link, .navbar-brand {
    color: #ffffff !important;
    font-weight: bold;
    transition: color 0.3s, text-decoration 0.3s;
}

.nav-link:hover, .navbar-brand:hover {
    color: #e9bf4d !important;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-brand i {
    font-size: 1.8rem;
}

.navbar-toggler {
    border-color: #ffffff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

body {
    background-color: #fdfdfd;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
}

.hero {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.logo {
    font-weight: bold;
    font-size: 2.5rem;
    color: #d4af37;
}

.btn-cta {
    margin: 1rem;
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background-color: #b8860b;
    border-color: #b8860b;
    color: #ffffff;
    font-weight: bold;
    transition: background 0.3s, border 0.3s;
}

.btn-primary:hover {
    background-color: #a97408;
    border-color: #a97408;
}

.btn-outline-secondary {
    color: #b8860b;
    border: 2px solid #b8860b;
    background-color: transparent;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.btn-outline-secondary:hover {
    background-color: #b8860b;
    color: #ffffff;
}

.card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.card-title {
    color: #b8860b;
    font-weight: bold;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.form-label {
    color: #1a1a1a;
    font-weight: bold;
}

.form-control {
    border-radius: 0.5rem;
    border: 1px solid #d4af37;
    background-color: #ffffff;
    color: #1a1a1a;
}
.form-control:focus {
    border-color: #b8860b;
    box-shadow: 0 0 5px rgba(184, 134, 11, 0.5);
}

.list-group-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
}

.long-text {
    word-break: break-word;
    font-family: monospace;
    font-size: 0.9rem;
}

.table {
    background-color: #ffffff;
}

.table th {
    background-color: #fdfdfd;
    color: #b8860b;
    font-weight: bold;
}

.table td {
    color: #1a1a1a;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fafafa;
}

.table-hover tbody tr:hover {
    background-color: #f5f5f5;
}

.toast-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #b8860b;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateY(20px);
    z-index: 9999;
}

.toast-message.show {
    opacity: 1;
    transform: translateY(0);
}