/* General form styling */
#newsletter-form {
    max-width: 500px; 
    margin: 0 auto; 
    padding: 20px;
    background-color: #f9f9f9; 
    border-radius: 8px; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
}

#newsletter-form label {
    display: block; 
    font-size: 14px;
    margin-bottom: 5px; 
    color: #333; 
}

#newsletter-form input[type="email"],
#newsletter-form input[type="text"],
#newsletter-form select {
    width: 100%; 
    padding: 10px;
    margin-bottom: 15px; 
    border: 1px solid #ddd; 
    border-radius: 4px;
    font-size: 14px;
}

#newsletter-form input[type="email"]:focus,
#newsletter-form input[type="text"]:focus,
#newsletter-form select:focus {
    border-color: #4CAF50; 
    outline: none;
}

#newsletter-form button {
    width: 100%; 
    padding: 12px;
    background-color: #4CAF50; 
    color: white; 
    border: none;
    border-radius: 4px; 
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#newsletter-form button:hover {
    background-color: #45a049; 
}

#response-message {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

#newsletter-form #response-message.success {
    color: #4CAF50; 
}

#newsletter-form #response-message.error {
    color: #f44336; 
}

/* Tab Navigation Styling */
.nav-tab-wrapper {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.nav-tab {
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
}

.nav-tab-active {
    background: #fff;
    border: 1px solid #ccc;
    border-bottom: 1px solid #fff;
}

/* Tab Content Styling */
.tab-content {
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
}

.tab-content.active {
    display: block;
}

.box-style{
    padding: 10px;
    border: 1px solid gray;
    border-radius: 19px;
}


#wp-htmlInput-textarea-wrap{
    display:none !important;
  }


  #newsletter-templates-table a.disabled
 {
    background-color: #f0f0f0 !important; /* Light gray background */
    cursor: not-allowed !important; /* Ensure the cursor is "not-allowed" */
    opacity: 0.6 !important; /* Grayed out appearance */
}