/*
Theme Name: Maxcoach Child
Theme URI: http://maxcoach.thememove.com/
Author: ThemeMove
Author URI: http://thememove.com/
Version: 1.0.0
Template: maxcoach
Text Domain:  maxcoach-child
Tags: editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/
        

        /* Basic styling for the page */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .state-header {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 30px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .state-map {
            width: 200px;
            margin-right: 40px;
        }
        .state-map img {
            width: 100%;
            height: auto;
        }
        .state-info h1 {
            font-size: 32px;
            margin-bottom: 15px;
            color: #0055a4;
        }
        .state-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 10px;
            margin-top: 15px;
        }
        .state-details p {
            font-size: 16px;
        }
        .quick-info {
            background-color: #e8f4ff;
            border-left: 5px solid #0055a4;
            padding: 20px 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .election-info h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #0055a4;
        }
        .register-button {
            background-color: #c41230;
            color: white;
            padding: 12px 20px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 4px;
            display: inline-block;
            transition: background-color 0.3s;
        }
        .register-button:hover {
            background-color: #a30e27;
        }
        .section-header {
            background-color: #0055a4;
            color: white;
            padding: 12px 20px;
            margin-bottom: 0;
            border-radius: 8px 8px 0 0;
            font-size: 18px;
            font-weight: 600;
        }
        .content-box {
            background-color: white;
            margin-bottom: 30px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
        }
        .senators {
            display: flex;
            justify-content: center;
            gap: 20px;
            text-align: center;
        }
        .official-card {
            flex: 0 0 45%;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 6px;
        }
        .official-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .democrat .official-name {
            color: #0055a4;
        }
        .republican .official-name {
            color: #c41230;
        }
        .official-details {
            font-size: 14px;
            color: #555;
            margin-bottom: 5px;
        }
        .official-title {
            font-size: 14px;
            color: #666;
            font-style: italic;
        }
        .representative-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            grid-gap: 20px;
            margin-top: 20px;
        }
        .representative-card {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 6px;
            text-align: center;
        }
        .representative-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .republican .representative-name {
            color: #c41230;
        }
        .democrat .representative-name {
            color: #0055a4;
        }
        .representative-party {
            font-size: 14px;
            margin-bottom: 5px;
            color: #555;
        }
        .representative-title {
            font-size: 14px;
            margin-bottom: 5px;
            color: #666;
            font-style: italic;
        }
        .representative-district {
            font-weight: bold;
            margin-bottom: 5px;
        }
        .representative-city {
            font-size: 14px;
            color: #666;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Adjusted to 2 columns */
            grid-gap: 30px;
            margin-top: 20px;
        }
        .data-section h4 {
            color: #0055a4;
            margin-bottom: 15px;
            border-bottom: 2px solid #e8f4ff;
            padding-bottom: 5px;
        }
        .data-section p {
            margin-bottom: 8px;
            font-size: 14px;
        }
