/* sidebar.css */

.sidebar {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.sidebar-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #222;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    text-decoration: none;
    color: #007BFF;
    transition: color 0.3s ease;
    font-weight: 500;
}

.sidebar-nav a:hover,
.sidebar-nav a:focus,
.sidebar-nav a.active {
    color: #0056b3;
    outline: none;
}

.cta-card h3 {
    color: #222;
    margin-bottom: 10px;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #007BFF;
    color: #fff;
    border: none;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #0056b3;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: #007BFF;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .sidebar {
        max-width: 100%;
    }
}