
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#f5f7fa;
    color:#1f2937;
    padding:40px 20px;
}

.container{
    max-width:1400px;
    margin:auto;
}

h1{
    text-align:center;
    margin-bottom:10px;
    font-size:36px;
}

.subtitle{
    text-align:center;
    color:#6b7280;
    margin-bottom:40px;
}

.table-container{
    overflow-x:auto;
    background:#fff;
    border-radius:12px;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

table{
    width:100%;
    border-collapse:collapse;
    min-width:1000px;
}

thead{
    background:#1e40af;
    color:#fff;
}

th,
td{
    padding:15px;
    text-align:left;
    border-bottom:1px solid #e5e7eb;
    vertical-align:middle;
}

tbody tr:hover{
    background:#f9fafb;
}

.project-image{
    width:180px;
    height:100px;
    object-fit:cover;
    border-radius:8px;
    border:1px solid #d1d5db;
}

.btn{
    display:inline-block;
    padding:10px 16px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    transition:.3s;
}

.btn:hover{
    background:#1d4ed8;
}

.project-name{
    font-weight:bold;
}

.placeholder{
    color:#9ca3af;
    font-style:italic;
}

@media(max-width:768px){
    h1{
        font-size:28px;
    }
}
