.cve-detail-page .page-layout {
    /* padding: 20px; */
}

.cve-detail-layout {
    display: flex;
    gap: 20px;
}

.cve-main-content {
    flex: 2;
    background-color: #161b22;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #30363d;
}

.cve-sidebar {
    flex: 1;
}

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

.page-header .back-link {
    color: #c9d1d9;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions .action-btn {
    background: none;
    border: none;
    color: #8b949e;
    cursor: pointer;
    font-size: 1rem;
}

.header-actions .action-text {
    color: #8b949e;
}

.cve-section {
    margin-bottom: 30px;
}

.cve-section h2 {
    font-size: 1.2rem;
    color: #c9d1d9;
    margin-bottom: 15px;
    border-left: 3px solid #1f6feb;
    padding-left: 10px;
}

.cve-section p,
.cve-section span {
    color: #8b949e;
    line-height: 1.6;
}

.cve-tag {
    display: inline-block;
    background-color: transparent;
    color: #8b949e;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 10px;
    border: 1px solid #30363d;
}

.target-info-card-full {
    background-color: #1c213a;
    border-radius: 8px;
    padding: 20px;
}

.target-status-badge {
    color: #f5a623;
    margin-bottom: 20px;
    font-weight: bold;
}

.target-main-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.target-icon {
    width: 100px;
    height: 100px;
}

.target-details {
    flex-grow: 1;
}

.cve-id {
    font-size: 1.1rem;
    font-weight: bold;
    color: #c9d1d9;
    margin-bottom: 10px;
}

.target-tags .tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin: 0 5px 0 0;
}

.tag.points {
    background-color: #30363d;
    color: #f5a623;
}

.tag.free {
    background-color: #30363d;
    color: #3fb950;
}

.target-actions-panel .action-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.target-actions-panel .action-item label {
    color: #c9d1d9;
    margin-right: 10px;
    min-width: 40px;
}

.btn-start {
    background-color: #1f6feb;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.flag-input {
    background-color: #0d1117;
    border: 1px solid #30363d;
    color: #c9d1d9;
    border-radius: 6px;
    flex-grow: 1;
    margin-right: 10px;
    padding: 8px 12px;
}

.btn-submit {
    background-color: #21262d;
    color: #c9d1d9;
    border: 1px solid #30363d;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.blood-info {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    color: #8b949e;
}

.sidebar-widget {
    margin-bottom: 20px;
}

.stats-widget {
    background-color: #161b22;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #30363d;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.stats-widget .stat-item {
    color: #8b949e;
}

.stats-widget .stat-item .icon {
    color: #f5a623; /* Yellow icon color */
}

.ranking-widget {
    background-color: #161b22;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #30363d;
}

.ranking-widget h3 {
    font-size: 1.1rem;
    color: #c9d1d9;
    margin-bottom: 15px;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table thead {
    background-color: transparent;
}

.ranking-table th,
.ranking-table td {
    padding: 12px 5px;
    text-align: left;
    color: #8b949e;
    border-bottom: 1px solid #30363d;
}

.ranking-table th {
    color: #c9d1d9;
    font-size: 0.9rem;
    border-bottom: 1px solid #30363d;
}

.ranking-table tr:last-child td {
    border-bottom: none;
}

.ranking-table .user-cell {
    display: flex;
    align-items: center;
}

.ranking-table .user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
}

.no-data {
    text-align: center;
    padding: 20px;
    color: #8b949e;
}



.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    margin-bottom: 0; /* Override existing margin */
}