/* Popup Styles */
#tcn-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#tcn-popup-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    font-family: Arial, sans-serif;
}

#tcn-close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
	padding:0;
	margin: 0;
}

#tcn-popup-container h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 24px;
}

#tcn-popup-container p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.tcn-form-field {
    margin-bottom: 20px;
    text-align: left;
}

.tcn-form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.tcn-form-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

#tcn-submit-button {
    background-color: #0073e6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

#tcn-submit-button:hover {
    background-color: #005bb5;
}

#tcn-submit-button:disabled {
    background-color: #a0a0a0;
    cursor: not-allowed;
}

#tcn-feedback {
    margin-top: 20px;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
}

#tcn-feedback.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#tcn-feedback.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.tcn-privacy {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

/* Re-open Link */
#tcn-reopen-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0073e6;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 999;
}
