/* General container styling */
#tljc-section {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#tljc-section h2 {
    font-size: 24px;
    color: #343a40;
    text-align: center;
    margin-bottom: 20px;
}

#tljc-info {
    text-align: left;
}

/* Dropdown and button styling */
#tljc-country-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 16px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

button#tljc-detect-location {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #3fbdb1;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

button#tljc-detect-location:hover {
    background-color: #0056b3;
}

/* Result box styling */
#tljc-result {
    padding: 20px;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    color: #495057;
    margin-top: 15px;
}
