/* Server Type Configuration Notice Styles */
.server-type-notice {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.server-type-notice.hidden {
    display: none;
}

.server-type-notice.available {
    background-color: #d1fae5;
    border-color: #10b981;
    color: #065f46;
}

.server-type-notice i {
    flex-shrink: 0;
    margin-top: 2px;
}

.server-type-notice span {
    flex: 1;
}

.config-suggestions {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.config-suggestions strong {
    display: block;
    margin-bottom: 0.25rem;
}

.config-suggestions ul {
    margin: 0;
    padding-left: 1.25rem;
}

.config-suggestions li {
    margin-bottom: 0.25rem;
}

/* Dark theme support */
.dark-theme .server-type-notice {
    background-color: #451a03;
    border-color: #f59e0b;
    color: #fef3c7;
}

.dark-theme .server-type-notice.available {
    background-color: #064e3b;
    border-color: #10b981;
    color: #d1fae5;
}