/* Your Custom CSS Goes here */

/* Custom styles for the application */

/* Curved navigation menu */
.curved-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
    background-color: #f8f9fa;
    position: relative;
    margin-bottom: 20px;
}

.curved-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='none' stroke='%23dee2e6' stroke-width='1.5' d='M0,50 C240,110 480,10 720,50 C960,90 1200,10 1440,50'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}

.curved-nav-item {
    display: inline-block;
    padding: 0;
    margin: 0 15px;
    position: relative;
}

.curved-nav-link {
    color: #4285f4;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.curved-nav-link:hover {
    color: #1a73e8;
    transform: translateY(-2px);
}

.curved-nav-link.active {
    color: #1a73e8;
    font-weight: 700;
}

.curved-nav-link i {
    margin-right: 5px;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .curved-nav {
        flex-wrap: wrap;
        padding-bottom: 30px;
    }
    
    .curved-nav-item {
        margin: 5px;
    }
    
    .curved-nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
}