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

body {
    background-color: #f7fbff;
}

.sl-container {
    display: flex;
    min-height: 100vh;
}

.sl-logo {
    margin-bottom: 30px;
}

.add-button {
    width: 40px;
    height: 40px;
    background-color: #9e253c;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 15px 0;
    cursor: pointer;
}

.nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin: 8px 0;
    cursor: pointer;
}

.sl-main-content {
    flex: 1;
    padding: 40px 300px 40px 40px;
    left:260px;
    position: relative;
}

.back-button {
    font-size: 24px;
    margin-bottom: 20px;
    cursor: pointer;
}

h1 {
    font-size: 28px;
    margin-bottom: 30px;
}

.status-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.status-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.status-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.status-count {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.status-trend {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.trend-up {
    color: #458562;
}

.trend-down {
    color: #7b213e;
}

.trend-neutral {
    color: #383538;
}

.reports-section {
    margin-top: 30px;
}

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

.reports-title {
    font-size: 24px;
}

.reports-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sl-search-bar {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    width: 250px;
    display: flex;
    align-items: center;
    background-color: white;
}

.sl-search-bar input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    margin-left: 5px;
    font-family: 'DM Sans', sans-serif;
}

.sl-report-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.report-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.report-title {
    font-weight: bold;
}

.due-deadline{
    color:#7B213E;
}

.report-status {
    color: #666;
    font-size: 14px;
}

.report-content {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

.report-footer {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.report-actions {
    display: flex;
    gap: 15px;
}

.star-icon, .menu-icon, .sort-icon, .filter-icon {
    cursor: pointer;
}

.sl-unverified {
    border-left: 4px solid #282538;
}

.sl-not-started {
    border-left: 4px solid #7B213E;
}

.sl-ongoing {
    border-left: 4px solid #46638E;
}

.sl-resolved {
    border-left: 4px solid #458562;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    cursor: pointer;
}

.hidden {
    display: none;
}