body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 0;
}

.tdm-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #cc0000;
    padding: 8px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.tdm-top-bar-button {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.tdm-top-bar-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.container {
    max-width: 900px;
    margin: 30px auto;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

h1 {
    color: #111;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 28px;
}

h2 {
    margin-top: 40px;
    font-size: 24px;
}

p {
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.url-form {
    display: flex;
    gap: 10px;
    margin: 30px 0;
}

.url-form input[type="url"] {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.url-form button {
    background-color: #cc0000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.message.error {
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
    background-color: #f8d7da;
    color: #721c24;
}

.results-area {
    margin-top: 30px;
}

.report-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
}

.status-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    border-radius: 50%;
    display: inline-block;
}

.report-text strong {
    display: block;
    font-size: 16px;
    color: #111;
}

.report-text span {
    font-size: 14px;
    color: #555;
}

/* Durum İkonları ve Renkleri */
.report-item.status-pass .status-icon {
    background-color: #28a745;
    content: '✔';
    /* Fallback */
}

.report-item.status-pass .status-icon::before {
    content: '✔';
    color: white;
    display: block;
    text-align: center;
    line-height: 24px;
}

.report-item.status-warn .status-icon {
    background-color: #ffc107;
}

.report-item.status-warn .status-icon::before {
    content: '!';
    color: white;
    display: block;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
}

.report-item.status-fail .status-icon {
    background-color: #dc3545;
}

.report-item.status-fail .status-icon::before {
    content: '✖';
    color: white;
    display: block;
    text-align: center;
    line-height: 24px;
}