.server-website-info {
    max-width: 1200px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.swi-intro {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    border-radius: 4px;
}

.swi-intro p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.swi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.swi-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    border-radius: 4px;
}

.swi-card-header {
    background: #f8f9fa;
    padding: 12px 20px;
    border-bottom: 1px solid #ccd0d4;
}

.swi-card-header h2 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #1d2327;
    display: flex;
    align-items: center;
}

.swi-card-header .dashicons {
    margin-right: 8px;
    color: #646970;
}

.swi-card-content {
    padding: 20px;
}

.swi-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f1;
}

.swi-info-item:last-child {
    border-bottom: none;
}

.swi-label {
    font-size: 13px;
    color: #646970;
    flex: 0 0 40%;
}

.swi-value {
    font-size: 13px;
    color: #1d2327;
    text-align: right;
    flex: 0 0 58%;
    word-break: break-all;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.swi-value:hover {
    color: #2271b1;
}

.swi-value:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #1d2327;
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0.9;
    margin-bottom: 5px;
}

.swi-value:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 10px;
    border: 5px solid transparent;
    border-top-color: #1d2327;
    margin-bottom: -5px;
}

.swi-value.copied {
    color: #00a32a;
}

.swi-error {
    color: #d63638;
}

/* Responsive Design */
@media screen and (max-width: 782px) {
    .swi-grid {
        grid-template-columns: 1fr;
    }

    .swi-info-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .swi-label,
    .swi-value {
        flex: 0 0 100%;
        text-align: left;
        margin: 4px 0;
    }
}
