/* General Styles */


#serverDetailsContent {
    padding: 20px;
    font-size: 16px;
    background-color: #2b3a4e;
    color: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin: 20px auto;
}

/* Detail Entry Styles */
.server-detail, .server-meta {
    padding: 10px 15px;
    margin: 5px 0;
    border-radius: 8px;
    background-color: #394b63;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.server-detail strong {
    font-weight: 600;
    margin-right: 10px;
}

.highlight-result {
    background-color: #1abc9c;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Primary Fields Section */
.primary-fields {
    padding: 20px;
    background-color: #3e4e66;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Responsive Styles */
@media (max-width: 768px) {
    #serverDetailsContent {
        font-size: 14px;
        padding: 15px;
    }

    .server-detail, .server-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    #serverDetailsContent {
        font-size: 12px;
        padding: 10px;
    }
}
