 h2 {
    font-size: 1.5rem;
 }

 p {
    font-size: 1rem;
    color: #646970;
 }

.gtcx-admin-container {
    max-width: 800px;
    margin-top: 30px;
}

.gtcx-admin-header {
    margin-bottom: 20px;
}

.gtcx-admin-header h2 {
    margin-top: 0;
    color: #1d2327;
    font-size: 24px;
}

.gtcx-admin-header p {
    color: #646970;
    font-size: 14px;
    margin-bottom: 0;
}

.form-table {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: block;
    margin-top: 30px;
}

.gtcx-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.gtcx-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.gtcx-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 34px;
}

.gtcx-slider:before {
    position: absolute;
    content: '';
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .gtcx-slider {
    background-color: #2196f3;
}

input:focus + .gtcx-slider {
    box-shadow: 0 0 1px #2196f3;
}

input:checked + .gtcx-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.gtcx-save-button {
    background: #2196f3 !important;
    border-color: #2196f3 !important;
    box-shadow: 0 1px 0 #1976d2 !important;
    color: #fff !important;
    text-decoration: none !important;
    text-shadow:
        0 -1px 1px #1976d2,
        1px 0 1px #1976d2,
        0 1px 1px #1976d2,
        -1px 0 1px #1976d2 !important;
}

.gtcx-save-button:hover {
    background: #1976d2 !important;
    border-color: #1976d2 !important;
}

.form-table th {
    width: 200px;
    padding: 20px 10px 20px 0;
    font-weight: 600;
    font-size: 14px;
}

.form-table td {
    padding: 20px 10px;
}

.form-table td p.description {
    margin-top: 10px;
    color: #646970;
    font-style: italic;
}

a.gutenlayouts {
    background: #06216d;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 15px;
    border: none;
    line-height: 1;
}