* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}


.stats-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
}

.stat-number.blue { color: #1e40af; }
.stat-number.green { color: #059669; }
.stat-number.red { color: #dc2626; }


.jobs-box {
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    min-height: 400px;
}

.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.jobs-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.jobs-count {
    font-size: 14px;
    color: #64748b;
}
.tabs {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
}
.tab {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    color: #64748b;
}
.tab:hover {
    background: #f1f5f9;
}

.tab.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.jobs-list {
    padding: 20px;
}


.job-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    position: relative;
    border-left: 4px solid #cbd5e1;
}
.job-card.interview {
    border-left-color: #22c55e;}
.job-card.rejected {
    border-left-color: #ef4444;
}

.company {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.role {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
}

.details {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.status-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.status-tag.not-applied {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.status-tag.interview {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.status-tag.rejected {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;}

.desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 16px;
}

.actions {
    display: flex;
    gap: 8px;}

.btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid;
    background: white;}

.btn-interview {
    color: #166534;
    border-color: #bbf7d0;}

.btn-interview:hover {
    background: #f0fdf4;
}
.btn-interview.active {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
}
.btn-rejected {
    color: #991b1b;
    border-color: #fecaca;
}

.btn-rejected:hover {
    background: #fef2f2;
}

.btn-rejected.active {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

.delete-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
}

.delete-btn:hover {
    color: #dc2626;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-img {
    width: 80px;
    height: auto;
    margin-bottom: 16px;
}

.empty-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}.empty-text {
    font-size: 14px;
    color: #64748b;
}

@media (max-width: 600px) {
    .stats-box {
        grid-template-columns: 1fr;
    }
.jobs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}