/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
}

/* Container Styles */
.container {
    text-align: justify;
    background: rgb(233, 234, 213);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header i {
    font-size: 50px;
    color: #333;
    margin-bottom: 10px;
}

.header h1 {
    margin: 10px 0;
    font-size: 24px;
}

.header p {
    margin: 5px 0;
    color: #235fd8;
    font-size: 14px;
}

/* Container to center the input */
.center-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically if needed */
   /* Optional: Takes the full viewport height */
}


/* Input Styles */
/* input[type="text"] {
    width: calc(100% - 22px);
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #dadada;
    border-radius: 22px;
    font-size: 16px;
    outline: none;
    max-width: 500px;
} */
 /* Container to center the input */
 



#url-input {
    width: calc(100% - 22px);
    justify-content: center;
    max-width: 500px; 
    padding-right: 30px; 
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    outline: none;
    border: 1px solid #dadada;
    border-radius: 22px;
    box-sizing: border-box; 
    background-image: url('close.png'); 
    background-repeat: no-repeat;
    background-position: right 10px center; 
    background-size: 15px 15px; 
}

#url-input.clear-visible {
    background-image: url('close.png'); /* Make sure icon is visible */
}

#url-input::placeholder {
    color: #999; /* Placeholder text color */
}


/* Button Container Styles */
.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Button Styles */
button {
    padding: 10px 20px;
    border: none;
    background-color: #3266b5;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
}

button i {
    margin-right: 8px;
    font-size: 16px;
}

button:hover {
    background-color: #5697f8;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

.wp-block-list{
    text-align: start;
}

/* Footer Styles */
.footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 80px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #bbb;
}

.button-container .status {
    margin-left: 10px;
    font-weight: bold;
}

.button-container .check {
    color: green;
}

.button-container .cross {
    color: red;
}

.spinner {
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #333; /* Dark grey */
    border-radius: 50%;
    width: 12px;
    height: 12px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




