body {
    background-color: #f3f2f1;
    font-family: "Segoe UI", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    text-align: center;
    border-top: 8px solid #0078d4; /* Microsoft Blue */
}

a {
    color: #0078d4;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

.logo-badge {
    background: linear-gradient(to bottom, #ffffffee, #e9f1ffcc);
    border-radius: 16px;
    padding: 12px 16px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-align: center;
    margin-bottom: 24px;
}

.logo-badge img {
    width: 60px;
    margin-bottom: 6px;
}

.logo-badge div {
    font-size: 18px;
    font-weight: 600;
    color: #2455c3;
}

.section-title {
    font-size: 18px;
    font-weight: 500;
    color: #444;
    margin-top: 12px;
    margin-bottom: 12px;
}

.app-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 16px;
}

.app-item {
    margin-bottom: 1rem;
    padding: 6px 12px;
    border-radius: 8px;
}

.app-item:hover {
    background-color: #f9f9f9;
}

.app-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    justify-content: center;
}

.app-name {
    font-weight: 600;
    color: #0078d4;
    font-size: 15px;
    line-height: 1.4;
    white-space: nowrap;
    text-decoration: none;
}

.app-name:hover {
    text-decoration: underline;
}

.app-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    white-space: nowrap;
}

.app-item.disabled {
    background-color: #f3f2f1;
    cursor: not-allowed;
    opacity: 0.7;
}

.app-item.disabled .app-name {
    color: #999;
    pointer-events: none;
}

.app-item.disabled .app-desc {
    color: #aaa;
}

.login-footer {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 16px;
    font-size: 14px;
    color: #888;
}

.login-footer a {
    display: inline-block;
    margin-top: 4px;
    color: #0078d4;
    font-weight: 500;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}
