body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: #f0f2f5;
}
.domain-url {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    word-break: break-all;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.header {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}
.domain-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.status-icon {
    width: 20px;
    height: 20px;
}
.status-valid {
    color: #22c55e;
}
.status-warning {
    color: #eab308;
}
.status-error {
    color: #ef4444;
}
.domain-name {
    font-weight: bold;
    margin: 0;
    word-break: break-all;
    line-height: 1.2;
}
.details {
    font-size: 14px;
    color: #666;
}
.details p {
    margin: 8px 0;
    overflow-wrap: break-word;
    word-break: break-all;
}
.status-summary {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}
.status-count {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
}
.status-count.status-error {
    background-color: #fee2e2;
}
.status-count.status-warning {
    background-color: #fef3c7;
}
.status-count.status-valid {
    background-color: #dcfce7;
}
.last-updated {
    color: #666;
    font-size: 12px;
    text-align: right;
    margin-top: 10px;
}