.dashboard-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding: 32px 60px 0 60px;
    min-height: 70vh;
}
.dashboard-sidebar {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 0;
}
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.sidebar-action {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 6px;
}
.sidebar-action img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #444;
    font-size: 1rem;
}
.dashboard-nav > ul > li {
    margin-bottom: 12px;
}
.account-section {
    color: #d32f2f;
    font-weight: 500;
    margin-top: 18px;
}
.tab-list {
    list-style: none;
    padding-left: 10px;
    margin-top: 8px;
}
.tab-list li {
    margin-bottom: 6px;
}
.tablinks {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s;
}
.tablinks.active, .tablinks:focus {
    font-weight: 600;
    text-decoration: underline;
}
.tabcontent {
    display: none;
    animation: fadeEffect 0.5s;
}
@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}
.dashboard-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
}
.dashboard-content h1 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 10px 0;
}
.dashboard-content p {
    font-size: 1.08rem;
    color: #444;
    margin: 0 0 10px 0;
}
.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    font-size: 1rem;
}
.dashboard-table th, .dashboard-table td {
    border-bottom: 1px solid #ddd;
    padding: 10px 12px;
    text-align: left;
}
.dashboard-table th {
    color: #888;
    font-weight: 500;
    background: #faf9fa;
}
.dashboard-table td {
    color: #222;
}
.remove-link {
    color: #d32f2f;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
}
@media (max-width: 1100px) {
    .dashboard-main {
        flex-direction: column;
        gap: 24px;
        padding: 24px 10px 0 10px;
    }
    .dashboard-sidebar {
        flex: 0 0 100%;
        flex-direction: row;
        gap: 30px;
        margin-bottom: 20px;
    }
    .dashboard-content {
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .dashboard-main {
        padding: 10px 2px 0 2px;
    }
    .dashboard-sidebar {
        flex-direction: column;
        gap: 16px;
    }
}
/* Tabs and sub-tabs */
.dashboard-nav > ul > li > a.tablinks {
    font-weight: 600;
    color: #d32f2f;
}
.tab-list {
    margin-top: 8px;
    margin-bottom: 8px;
}
.tab-list .tablinks {
    font-size: 1rem;
    color: #d32f2f;
    font-weight: 400;
    padding-left: 0;
}
.tab-list .tablinks.active {
    font-weight: 600;
    text-decoration: underline;
}
.tabcontent, .subtabcontent {
    display: none;
}
.tabcontent.active, .subtabcontent.active {
    display: block;
}
/* Show first subtab by default */
.tabcontent .subtabcontent:first-child {
    display: block;
}
/* Submit app steps */
.submit-app-title {
    color: #d32f2f;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.submit-steps {
    margin: 30px 0 20px 0;
}
.submit-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 18px;
}
.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
}
.step-complete {
    background: #d32f2f;
}
.step-current {
    background: #d32f2f;
    font-size: 2rem;
    font-weight: 700;
}
.step-optional {
    background: #2196f3;
    font-size: 1.5rem;
}
.checkmark {
    font-size: 2rem;
    color: #fff;
}
.pencil {
    font-size: 1.5rem;
    color: #fff;
}
.step-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.step-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
}
.step-desc {
    font-size: 0.98rem;
    color: #444;
}
.required .step-title {
    color: #d32f2f;
}
.optional .step-title {
    color: #2196f3;
}
.review-btn {
    margin-top: 18px;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 10px 28px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 500;
}
/* Claim app form */
.claim-app-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 340px;
    margin-top: 18px;
}
.claim-app-form label {
    font-size: 1rem;
    color: #444;
    margin-bottom: 2px;
}
.claim-app-form input[type="text"],
.claim-app-form input[type="email"] {
    padding: 7px 10px;
    border: 1px solid #bbb;
    border-radius: 3px;
    font-size: 1rem;
}
.claim-app-form button[type="submit"] {
    margin-top: 8px;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 8px 18px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
}
/* Submit app multi-step form */
.submit-step-form {
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 24px 18px 18px 18px;
    margin-bottom: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 1rem;
    color: #444;
    margin-bottom: 4px;
    font-weight: 500;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    font-size: 1rem;
    padding: 7px 10px;
    border: 1px solid #bbb;
    border-radius: 3px;
    margin-bottom: 2px;
}
.form-group textarea {
    resize: vertical;
}
.form-group input[type="file"] {
    padding: 4px 0;
    border: none;
}
.form-group input[type="radio"] {
    margin-right: 6px;
    margin-left: 0;
}
.form-nav {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.form-nav button {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 8px 22px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}
.form-nav button:hover {
    background: #b71c1c;
}
#submit-app-success, #submit-app-error, #submit-app-pending {
    text-align: center;
    font-size: 1.1rem;
}