.dsc-frontend-container {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dsc-layout-card {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.dsc-layout-list {
    grid-template-columns: 1fr;
}

.dsc-domain-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dsc-domain-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.dsc-domain-card.dsc-status-online {
    border-left: 4px solid #10b981;
}

.dsc-domain-card.dsc-status-offline {
    border-left: 4px solid #ef4444;
}

.dsc-domain-card.dsc-status-unknown {
    border-left: 4px solid #f59e0b;
}

.dsc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.dsc-domain-name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
}

.dsc-status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dsc-status-online .dsc-status-indicator {
    color: #10b981;
}

.dsc-status-offline .dsc-status-indicator {
    color: #ef4444;
}

.dsc-status-unknown .dsc-status-indicator {
    color: #f59e0b;
}

.dsc-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dsc-domain-url {
    font-size: 0.875rem;
    color: #6b7280;
    word-break: break-all;
}

.dsc-status-info {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.dsc-status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dsc-status-badge.dsc-status-online {
    background-color: #d1fae5;
    color: #065f46;
}

.dsc-status-badge.dsc-status-offline {
    background-color: #fee2e2;
    color: #991b1b;
}

.dsc-status-badge.dsc-status-unknown {
    background-color: #fef3c7;
    color: #92400e;
}

.dsc-response-time,
.dsc-status-code {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: #f3f4f6;
    border-radius: 6px;
    font-size: 0.8125rem;
    color: #4b5563;
    font-family: monospace;
}

.dsc-last-check {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
}

.dsc-last-check small {
    color: #9ca3af;
    font-size: 0.8125rem;
}

.dsc-error-message {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background-color: #fef2f2;
    border-left: 3px solid #ef4444;
    border-radius: 6px;
}

.dsc-error-message small {
    color: #991b1b;
    font-size: 0.8125rem;
}

.dsc-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dsc-badge-online {
    background-color: #d1fae5;
    color: #065f46;
}

.dsc-badge-offline {
    background-color: #fee2e2;
    color: #991b1b;
}

.dsc-badge-unknown,
.dsc-badge-error {
    background-color: #fef3c7;
    color: #92400e;
}

.dsc-frontend-message {
    padding: 1.5rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #6b7280;
    text-align: center;
    margin: 2rem 0;
}

.dsc-check-form-container {
    margin: 2rem 0;
}

.dsc-check-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.dsc-form-title {
    margin: 0 0 2rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.dsc-customer-check-form {
    margin-bottom: 1rem;
}

.dsc-form-group {
    display: flex;
    gap: 0.75rem;
}

.dsc-form-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
}

.dsc-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.dsc-form-input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15),
                0 4px 20px rgba(59, 130, 246, 0.2);
}

.dsc-form-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.dsc-form-button:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.dsc-form-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.dsc-form-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.dsc-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: dsc-spin 0.8s linear infinite;
}

@keyframes dsc-spin {
    to {
        transform: rotate(360deg);
    }
}

.dsc-check-result {
    margin-top: 1.5rem;
}

.dsc-result-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    animation: dsc-slide-in 0.3s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@keyframes dsc-slide-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dsc-result-card.dsc-result-online {
    border-left: 4px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.08));
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
}

.dsc-result-card.dsc-result-offline {
    border-left: 4px solid #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.08));
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
}

.dsc-result-card.dsc-result-error {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.08));
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
}

.dsc-result-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dsc-result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dsc-result-online .dsc-result-icon {
    color: #10b981;
}

.dsc-result-offline .dsc-result-icon {
    color: #ef4444;
}

.dsc-result-error .dsc-result-icon {
    color: #f59e0b;
}

.dsc-result-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.dsc-result-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dsc-result-domain {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    word-break: break-all;
}

.dsc-result-details {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dsc-result-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: monospace;
}

.dsc-result-error {
    margin-top: 0.5rem;
    padding: 0.875rem;
    background-color: rgba(239, 68, 68, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 3px solid #ef4444;
    border-radius: 8px;
}

.dsc-result-error small {
    color: #fca5a5;
    font-size: 0.875rem;
}

.dsc-result-error .dsc-result-body p {
    color: #fca5a5;
    font-size: 0.9375rem;
    margin: 0;
}

@media (max-width: 768px) {
    .dsc-frontend-container {
        grid-template-columns: 1fr;
    }

    .dsc-domain-name {
        font-size: 1.125rem;
    }

    .dsc-status-info {
        font-size: 0.8125rem;
    }

    .dsc-check-form-card {
        padding: 2rem 1.5rem;
    }

    .dsc-form-title {
        font-size: 1.625rem;
    }

    .dsc-form-group {
        flex-direction: column;
    }

    .dsc-form-button {
        width: 100%;
    }
}
