.request-section {
    display: none;
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-control {
    margin-bottom: 10px;
}

.card {
    margin-bottom: 20px;
}

/* static/css/styles.css */
.required-label::after {
    content: "*";
    color: #dc3545;
    margin-left: 3px;
}

.navbar-search .btn {
    width: 38px;  /* Match input height */
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-search .bi-search {
    font-size: 1rem;
    margin-top: -1px;  /* Optical alignment */
}

.navbar-search .form-control {
    height: 38px;
    padding: 6px 12px;
}

@media (max-width: 992px) {
    .navbar-search {
        margin-left: 0;
        margin-top: 1rem;
        max-width: 100%;
    }
}

<<<<<<< HEAD
=======

>>>>>>> successscreen
/* In your static/css/styles.css */
.logout-form {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.logout-form button {
    background: none;
    border: 0;
    color: rgba(255,255,255,.55);
    padding: 0.5rem 1rem;
    display: block;
}

.logout-form button:hover {
    color: rgba(255,255,255,.75);
    text-decoration: none;
}

.card-body p strong { color: #212529; } /* Bootstrap's default dark color */
.card-body p { color: #212529 !important; }

/* Message history styling */
#message-history {
    scroll-margin-top: 20px;
}

.unread-message {
    background-color: rgba(13, 110, 253, 0.1);
}

.message-badge {
    font-size: 0.8rem;
    vertical-align: middle;
}

.status-info .alert {
    border-left: 4px solid var(--bs-primary);
    padding-left: 1.5rem;
}
.sdr-status h6 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}
.badge.bg-danger.unread-counter {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.badge.bg-danger.unread-counter.hide {
    opacity: 0;
    transform: scale(0);
}


.item-form {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    position: relative;
}

/* Style for remove button */
.remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
}