body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background: linear-gradient(90deg, #2c3e50, #34495e);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    color: #f1c40f !important;
    transition: color 0.3s;
}

.navbar-brand:hover {
    color: #e67e22 !important;
}

.nav-link {
    color: #ecf0f1 !important;
    transition: color 0.3s;
    font-weight: bold !important;
}

.nav-link:hover {
    color: #f1c40f !important;
}

.modern-card {
    border: none;
    border-radius: 20px;
    background-color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.modern-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(90deg, #f1c40f, #e67e22);
    border: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #d4ac0d, #c0392b);
}

.btn-outline-warning {
    border-color: #f1c40f;
    color: #f1c40f;
    transition: all 0.3s;
}

.btn-outline-warning:hover {
    background-color: #f1c40f;
    color: white;
}

.btn-outline-danger {
    border-color: #e74c3c;
    color: #e74c3c;
    transition: all 0.3s;
}

.btn-outline-danger:hover {
    background-color: #e74c3c;
    color: white;
}

.btn-outline-secondary {
    border-color: #7f8c8d;
    color: #7f8c8d;
    transition: all 0.3s;
}

.btn-outline-secondary:hover {
    background-color: #7f8c8d;
    color: white;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #dcdcdc;
}

.form-control .rounded-pill {
    border-radius: 50px;
}

footer {
    background: linear-gradient(90deg, #2c3e50, #34495e);
    color: white;
}

.text-success {
    color: #27ae60 !important;
}

.search-filter-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.default-btn {
    background: linear-gradient(90deg, #f1c40f, #e67e22);
    border: none;
    border-radius: 10px;
    transition: all 0.3s;
    color: #fff !important;
}

.default-btn:hover {
    background: linear-gradient(90deg, #d4ac0d, #c0392b);
}

.default-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chat-box {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.chat-message-sent {
    background-color: #d4edda;
    padding: 10px 15px;
    border-radius: 10px 10px 0 10px;
    margin-bottom: 10px;
    max-width: 70%;
    display: inline-block;
}

.chat-message-received {
    background-color: #e9ecef;
    padding: 10px 15px;
    border-radius: 10px 10px 10px 0;
    margin-bottom: 10px;
    max-width: 70%;
    display: inline-block;
}

.chat-message-offer {
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 70%;
    display: inline-block;
}

.chat-message-sent small,
.chat-message-received small,
.chat-message-offer small {
    font-size: 0.8em;
    color: #6c757d;
}

.list-group-item a{
    color: #212529;
}

.list-group-item.active {
    background-color: #e9ecef;
    color: #212529;
    border-color: #dee2e6;
}

.list-group-item.active a {
    font-weight: bold;
}

.badge-unread {
    background-color: #dc3545;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
    position: relative;
    top: -10px;
    left: -5px;
}

.offer-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.offer-actions .btn {
    font-size: 0.9rem;
    width: 100px;
}

.offer-actions .btn-accept {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.offer-actions .btn-reject {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.offer-modal .modal-content {
    border-radius: 10px;
}

.message-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.gig-details, .freelancer-profile {
    min-height: 300px;
}

.review-section {
    margin-top: 30px;
}

.review-section .review-item {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}

.review-section .review-item:last-child {
    border-bottom: none;
}

.star-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.jobs-filter-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-card {
    transition: transform 0.2s;
}

.job-card:hover {
    transform: translateY(-5px);
}

.status-badge {
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 12px;
}

.status-badge.in-progress {
    background-color: #007bff;
    color: #fff;
}

.status-badge.completed {
    background-color: #28a745;
    color: #fff;
}

.status-badge.canceled {
    background-color: #dc3545;
    color: #fff;
}

.admin-filter-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.admin-card {
    transition: transform 0.2s;
}

.admin-card:hover {
    transform: translateY(-5px);
}

.dashboard-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.dashboard-card a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.dashboard-card a:hover {
    color: #0056b3;
}

.admin-back-btn{
    margin-bottom: 20px;
}

.user-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-nav {
    background-color: #343a40;
    color: #fff;
    border: none;
    transition: background-color 0.2s;
}

.btn-nav:hover {
    background-color: #495057;
    color: #fff;
}

.jobs-tab button{
    color: #212529 !important;
}

.jobs-tab button.active{
    color: #d4ac0d !important;
}