/*
  Theme Name: Divi Child
  Version: 1.0.0
  Template: Divi
  Author: TRK
  Author URI: https://www.divi-pixel.com
  Text Domain: divi-child
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

.gfield_select option {
  width: auto !important;
  min-width: 100% !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

#gform_submit_button_1 {
  background-color: black;
  color: white;
  border: 1px solid black;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#gform_submit_button_1:hover {
  background-color: transparent;
  color: black;
  border: 1px solid black;
}

.entry-content tr td {
  word-break: break-word;
}

.gv-table-view thead tr th {
            background-color: #0d8f9b;
            color: white;
            font-weight: 700;
            padding: 12px 10px;
        }
        
        /* Alternating row background colors */
        .gv-table-view tbody tr:nth-child(odd) {
            background-color: white;
        }

        .gv-table-view tbody tr:nth-child(even) {
            background-color: #f3f3f3;
        }

        /* Hover effect with smooth transition */
        .gv-table-view tbody tr {
            transition: background-color 0.3s ease;
        }

        .gv-table-view tbody tr:hover {
            background-color: #e6e6e6;
        }
