/* Main stylesheet for Tender Creator web application */

/* General styles */
body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
}

/* Dashboard cards */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Navigation active state */
.navbar-dark .navbar-nav .nav-link.active {
    font-weight: bold;
    color: #fff;
}

/* Footer */
.footer {
    margin-top: 3rem;
}

/* Custom button styles */
.btn-primary {
    background-color: #2c3e50;
    border-color: #2c3e50;
}

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

/* Page headers */
h1 {
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-deck {
        display: block;
    }
}

/* TOC Section highlighting */
.toc-section {
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid transparent;
}

.toc-section:hover {
    background-color: rgba(44, 62, 80, 0.15);
    cursor: pointer;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.toc-section.selected {
    background-color: rgba(44, 62, 80, 0.2);
    border-left: 4px solid #2c3e50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-weight: 500;
}

/* Pointer emoji removed as requested */
