@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333;
}

.container-checker {
    width: 90%;
    max-width: 800px;
}
.container-checker .checker-box {
    background-color: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}
.container-checker .tabs-and-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.container-checker .tabs {
    display: flex;
    background-color: #F1F0F5;
    border-radius: 50px;
    padding: 4px;
}
.container-checker .tab {
    background: none;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 50px;
    margin: 0;
    font-weight: 700;
    color: #6B707C;
    transition: background-color 0.3s, color 0.3s;
}
.container-checker .tab.active {
    background-color: #4F49E1;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.container-checker .actions {
    display: flex;
    gap: 8px;
}
.container-checker .action-btn {
    background: #F9FAFC;
    background-color: #F9FAFC;
    border: 1px solid #ced4da;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.container-checker .textarea-container {
    position: relative;
    margin-bottom: 16px;
}
.container-checker textarea {
    width: 100%;
    height: 180px;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 12px;
    resize: vertical;
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
    background-color: #FAFAFA;
    resize: none;
}
.container-checker .url-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: #E7E8F5;
    color: #4F49E1;
    padding: 4px 12px;
    border-radius: 32px;
    font-size: 12px;
    font-weight: 500;
}
.container-checker .spam-counter {
    background-color: #ffebee;
    color: #c62828;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}
.container-checker .options {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}
.container-checker .options div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.container-checker .options input[type="checkbox"] { accent-color: #4F48E4; }
.optionsBTNContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.optionsBTNContainer h3{ margin: 0px; }
.container-checker #check-da-pa {
    background-color: #4F48E4;
    color: white;
    border: none;
    padding: 14px 40px;
    cursor: pointer;
    border-radius: 80px;
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}
.container-checker #check-da-pa:hover { transform: translateY(-2px); }
.container-checker .error-message {
    color: #dc3545;
    margin-top: 10px;
    text-align: center;
}
.container-checker .report-box {
    background-color: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.container-checker .report-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}
.container-checker table {
    width: 100%;
    border-collapse: collapse;
}
.container-checker th, .container-checker td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}
.container-checker th { font-weight: 600; }
.container-checker .filter, .container-checker .export {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
}
.container-checker table {
    width: 100%;
    border-collapse: collapse;
}
.container-checker th, .container-checker td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
.container-checker th:first-child, .container-checker td:first-child {
    text-align: left;
}
.container-checker th { background-color: #f2f2f2; }

.progress-circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.progress-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: white;
}


