.nebula-app-screen {
    border: 1px solid #d8dbe8;
    border-radius: 8px;
    padding: 24px;
    background: #ffffff;
}

.nebula-app-screen__eyebrow {
    margin: 0 0 4px;
    color: #c35d5e;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.nebula-app-screen h2 {
    margin: 0 0 16px;
    color: #293375;
}

.nebula-notice {
    border-left: 4px solid #293375;
    padding: 16px;
    background: #f7f8fc;
}

.nebula-dashboard {
    color: #1f2937;
}

.nebula-dashboard__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.nebula-dashboard__header h2 {
    margin: 0 0 8px;
    color: #293375;
}

.nebula-dashboard__subtitle {
    margin: 0;
}

.nebula-setup-panel {
    margin-bottom: 24px;
    border: 1px solid #d8dbe8;
    border-left: 4px solid #c35d5e;
    border-radius: 8px;
    padding: 18px 20px;
    background: #ffffff;
}

.nebula-setup-panel h3 {
    margin-top: 0;
    color: #293375;
}

.nebula-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.nebula-card {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #d8dbe8;
    border-radius: 8px;
    padding: 20px;
    background: #ffffff;
}

.nebula-card h3 {
    margin: 0 0 10px;
    color: #293375;
}

.nebula-card p {
    margin-top: 0;
}

.nebula-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 40px;
    border-radius: 6px;
    padding: 9px 14px;
    background: #293375;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.nebula-button:hover,
.nebula-button:focus {
    background: #c35d5e;
    color: #ffffff;
}

.nebula-button--secondary {
    background: #ffffff;
    color: #293375;
    border: 1px solid #293375;
}

@media (max-width: 640px) {
    .nebula-dashboard__header {
        display: block;
    }

    .nebula-dashboard__header .nebula-button {
        margin-top: 16px;
    }
}
