/*
Theme Name: SolarGlow
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Solar Renewable Energy Html Template
Version: 1.0.0
*/


/*
=================================
|***    Table of contents:   ***|
=================================

Main Style file-> assets/css/main.css 

All the SCSS File in SCSS Folder of Assets Folder. You can read the doc file also for better understand.

// BASIC
@import 'basic';

// MIXIN
@import 'variables';

// TYPOGRAPHY
@import 'typography';

// MIX
@import 'mix';

// HELPER
@import 'helper';

// ICON FONTS
@import 'icon';

// ANIMATION
@import 'animation';

// Button 
@import 'btn';

// Colors 
@import 'colors';

// Preloader 
@import 'preloader';

/* ----------------------------------
    Template Section Styles
 ------------------------------------*/

 /* // Menu - Header Section 
 @import 'header';
 
 // Hero Slide - Section 
 @import 'hero';
 
 // Section Title - Heading 
 @import 'section';
 
 // About - Section 
 @import 'about';
 
 // Features - Section 
 @import 'features';
 
 // services - Section 
 @import 'services';
 
 // testimonial - Section 
 @import 'testimonial';
 
 // Portfolio - Cases - Section 
 @import 'project';
 
 // Price Table - Section 
 @import 'price';
 
 // Call To Action - Section 
 @import 'cta';
 
 // Content Block - Section 
 @import 'contentblock';
 
 // team - Section 
 @import 'team';
 
 // funfact - Section 
 @import 'funfact';
 
 // Download - Section 
 @import 'carousel';
 
 // FAQ - Section 
 @import 'faq';
 
 // Blog - Section 
 @import 'blog';
 
 // Contact Us - Section 
 @import 'contact';
 
 // footer - Section 
 @import 'footer';n facts */



 #submit-button:disabled {
    /* Example: change background color, cursor, and add opacity */
    background-color: #cccccc !important; /* Added !important for testing */
    cursor: not-allowed;
    opacity: 0.7;
    color: #666666 !important; /* Added !important for testing */
    pointer-events: none;
}

/* Optional: If your theme-btn has a hover effect, disable it */
#submit-button:disabled:hover {
    background-color: #cccccc !important; /* Match disabled background, added !important */
    color: #666666 !important; /* Match disabled text color, added !important */
}

/* Ensure the small tag for errors is block or inline-block to take space */
small.text-danger {
   display: block; /* or inline-block; depends on your layout needs */
   min-height: 1em; /* Give it some height even when empty */
}