* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

.header-bar {
    background-color: rgb(223, 223, 223);
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: grey 0.2px solid;
}

.header-left h1 {
    font-size: 18px;
    font-weight: 600;
    margin-left: 100px;
}

.gradient-text {
    font-size: 3rem;
      font-weight: bold;
      background: linear-gradient(to right, rgb(20, 20, 255), rgb(16, 195, 255));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 100px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background-color: white;
    border: none;
    padding: 8px 35px 8px 12px;
    border-radius: 4px;
    color: white;
    width: 200px;
}

.search-input::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    right: 10px;
    color: #999;
}

.notification-icon {
    position: relative;
    font-size: 18px;
    cursor: pointer;
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #007bff;
    border-radius: 50%;
}

.add-icon {
    font-size: 18px;
    cursor: pointer;
}

.main-container {
    display: flex;
    margin-top: 60px;
}

.sidebar {
    width: 250px;
    background-color: white;
    min-height: calc(100vh - 60px);
    border-right: 1px solid #e0e0e0;
    position: fixed;
    left: 0;
    top: 60px;
}

.nav-list {
    list-style: none;
    padding: 20px 0;
}

.nav-item {
    margin: 5px;
    margin-left: 12px;
    border-radius: 10px;
    max-width: 90%;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.nav-item.active .nav-link {
    background-color: #007bff;
    color: white;
    border-radius: 15px;
}

.nav-item:hover .nav-link {
    background-color: #007bff;
    color: white;
    border-radius: 15px;
}

.nav-item.active:hover .nav-link {
    background-color: #007bff;
    color: white;
    border-radius: 15px;
}

.nav-icon {
    margin-right: 12px;
    font-size: 16px;
}

.nav-text {
    font-size: 14px;
    font-weight: 500;
}

.main-content {
    margin-left: 250px;
    padding: 30px;
    background-color: #000000;
    min-height: calc(100vh - 60px);
    width: calc(100% - 250px);
}

.welcome-section {
    background-color: rgb(43, 43, 43);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 0.5px solid lightgray;
}

.welcome-title {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.welcome-subtitle {
    color: #ccc;
    font-size: 16px;
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.card-icon {
    font-size: 16px;
    color: #007bff;
}

.card-content {
    text-align: left;
}

.card-value {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.card-subtitle {
    font-size: 12px;
    color: #666;
}

.section-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.section-icon {
    margin-right: 10px;
    font-size: 18px;
}

.section-header h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.section-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.deadlines-list {
    list-style: none;
}

.deadline-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.deadline-item:last-child {
    border-bottom: none;
}

.deadline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    margin-right: 12px;
}

.deadline-dot.red {
    background-color: #dc3545;
}

.deadline-text {
    flex: 1;
    color: #333;
    font-size: 14px;
}

.deadline-time {
    color: #666;
    font-size: 12px;
}

.team-members {
    margin-bottom: 20px;
}

.team-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.team-member.blue {
    background-color: #007bff;
    color: white;
}

.team-member.green {
    background-color: #28a745;
    color: white;
}

.member-name {
    font-size: 14px;
    font-weight: 500;
}

.member-hours {
    font-size: 14px;
    font-weight: 600;
}

.team-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.total-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.total-hours {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

@media (max-width: 820px) {
    .sidebar {
        width: 200px;
    }
    
    .main-content {
        margin-left: 200px;
        width: calc(100% - 200px);
    }
    
    .summary-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-right {
        gap: 10px;
        margin-right: 20px;
    }
    .header-left h1{
        margin-left: 20px;
    }

    .search-input {
        width: 150px;
    }
}

@media (max-width: 590px) {
    .sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .summary-cards {
        grid-template-columns: 1fr;
    }
    
    .header-bar {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .main-container {
        margin-top: 120px;
    }
}