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

body{
    background:#f4f7fb;
    color:#1e293b;
}

.back-btn{
    position:fixed;
    top:25px;
    left:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:14px;
    background:#232F3E;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:1rem;
    z-index:1000;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.back-btn:hover{
    background:#FEBD69;
    color: #232F3E;
    transform:translateY(-2px);
}

/* MAIN */

.main-content{
    padding:110px 8% 50px;
    max-width: 1200px;
    margin: auto;
}

/* TOP */

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.topbar h1{
    font-size:2.3rem;
    margin-bottom:10px;
    color:#232F3E;
}

.topbar p{
    color:#64748b;
}

.top-btn{
    padding:14px 22px;
    border:none;
    border-radius:14px;
    background:#232F3E;
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.top-btn:hover{
    background:#FEBD69;
    color: #232F3E;
}

/* WARNING */

.warning-box{
    background:#fff7ed;
    border-left:6px solid #f59e0b;
    padding:22px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:35px;
}

.warning-box i{
    color:#f59e0b;
    font-size:1.4rem;
}

/* GRID */

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:25px;
}

/* CARD */

.project-card{
    background:white;
    padding:28px;
    border-radius:24px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

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

/* STATUS */

.status{
    padding:10px 16px;
    border-radius:50px;
    font-size:0.8rem;
    font-weight:bold;
}

.progress, .in_progress{
    background:#dbeafe;
    color:#1d4ed8;
}

.review{
    background:#fef3c7;
    color:#b45309;
}

.pending, .pending_files{
    background:#fee2e2;
    color:#dc2626;
}

.status.completed {
    background:#dcfce7;
    color:#15803d;
}

.deadline{
    color:#64748b;
    font-size:0.9rem;
}

/* CONTENT */

.project-card h2{
    margin-bottom:15px;
    color:#232F3E;
}

.project-card p{
    color:#64748b;
    line-height:1.7;
    margin-bottom:25px;
}

/* PROGRESS */

.progress-area{
    margin-bottom:25px;
}

.progress-text{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    font-size:0.95rem;
}

.progress-bar{
    width:100%;
    height:12px;
    background:#e2e8f0;
    border-radius:50px;
    overflow:hidden;
}

.progress-bar span{
    height:100%;
    display:block;
    background:linear-gradient(to right,#FEBD69,#ff8fab);
    border-radius:50px;
}

/* INFO */

.project-info{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
    color:#475569;
}

.project-info span{
    display:flex;
    align-items:center;
    gap:8px;
}

/* BUTTONS */

.project-buttons{
    display:flex;
    gap:15px;
}

.primary-btn,
.secondary-btn{
    flex:1;
    padding:14px;
    border:none;
    border-radius:14px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    text-align: center;
    text-decoration: none;
}

.primary-btn{
    background:#232F3E;
    color:white;
}

.primary-btn:hover{
    background:#FEBD69;
    color: #232F3E;
}

.secondary-btn{
    background:#e0f2fe;
    color:#0284c7;
}

.secondary-btn:hover{
    background:#bae6fd;
}

/* RESPONSIVE */

@media(max-width:900px){
    .main-content{
        padding:100px 25px 40px;
    }
}

@media(max-width:768px){
    .topbar{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }
}
