.gmw-placeholder {
    padding: 1.5rem;
    border: 1px dashed #ccc;
    border-radius: 4px;
    color: #888;
    font-style: italic;
    text-align: center;
}

.gmw-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.gmw-table th,
.gmw-table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.gmw-table th {
    font-weight: 600;
    background: #f9f9f9;
}

.gmw-day {
    font-weight: 600;
    white-space: nowrap;
}

.gmw-closed {
    color: #999;
    font-style: italic;
}

.gmw-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.gmw-card {
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 1.25rem;
    background: #fff;
}

.gmw-card-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.gmw-card-title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.gmw-card-text {
    color: #555;
    line-height: 1.5;
}

.gmw-card-valid {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #888;
}

.gmw-card-link {
    margin-top: 0.5rem;
}

.gmw-card-link a {
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.gmw-card-link a:hover {
    text-decoration: underline;
}

.gmw-menu-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin: 1rem 0;
}

.gmw-menu-link:hover {
    background: #555;
    color: #fff;
}

.gmw-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.gmw-event {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.gmw-event:last-child {
    border-bottom: none;
}

.gmw-event-image {
    float: left;
    margin-right: 1rem;
    border-radius: 4px;
}

.gmw-event-date {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

.gmw-event-title {
    font-weight: 600;
}

.gmw-event-desc {
    margin-top: 0.25rem;
    color: #555;
}

.gmw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

.gmw-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.gmw-gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.2s;
}

.gmw-gallery-item:hover .gmw-gallery-image {
    transform: scale(1.05);
}

.gmw-contact {
    line-height: 1.8;
}

.gmw-contact a {
    color: #333;
    text-decoration: none;
}

.gmw-contact a:hover {
    text-decoration: underline;
}

.gmw-contact-address {
    color: #555;
}

.gmw-contact-map {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    padding: 0.1rem 0.5rem;
    border-radius: 3px;
    vertical-align: middle;
}

.gmw-contact-map:hover {
    background: #333;
    color: #fff;
}

.gmw-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.gmw-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.gmw-social-link svg {
    flex-shrink: 0;
}

.gmw-social-link:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

.gmw-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.gmw-banner a {
    text-decoration: none;
    color: inherit;
}

.gmw-banner-link {
    display: inline;
}

.gmw-banner-icon {
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.gmw-banner-text {
    display: inline;
}

.gmw-alert {
    background: #dc3545;
    color: #fff;
    font-weight: 600;
    border: 2px solid #b02a37;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.gmw-alert .gmw-banner-icon {
    font-size: 2rem;
}

.gmw-alert a:hover .gmw-banner-text {
    text-decoration: underline;
}

.gmw-promotion {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.gmw-promotion .gmw-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #ffc107;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
}

.gmw-promotion a:hover .gmw-banner-text {
    text-decoration: underline;
}

.gmw-stylebook {
    max-width: 800px;
    margin: 2rem auto;
}

.gmw-stylebook h2 {
    margin-bottom: 0.5rem;
}

.gmw-stylebook-intro {
    color: #666;
    margin-bottom: 2rem;
}

.gmw-stylebook-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.gmw-stylebook h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.gmw-stylebook-quickref {
    margin-bottom: 2rem;
}

.gmw-stylebook-quickref .gmw-table td:first-child {
    white-space: nowrap;
}

.gmw-stylebook-quickref code {
    background: #f0f0f0;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9rem;
}

.gmw-stylebook-section:last-child {
    border-bottom: none;
}

.gmw-stylebook-section h3 code {
    background: #f0f0f0;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 1rem;
}

.gmw-stylebook-variant {
    margin-top: 1rem;
}

.gmw-stylebook-shortcode {
    margin-bottom: 0.25rem;
}

.gmw-stylebook-shortcode code {
    background: #e8e8e8;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    font-size: 0.85rem;
    color: #555;
}

.gmw-stylebook-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 0.25rem;
}

.gmw-stylebook-preview {
    padding: 1rem;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
}

.gmw-stylebook-tech-link {
    font-size: 0.85rem;
    font-weight: 400;
}

.gmw-stylebook-tech {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.gmw-stylebook-tech h2 {
    font-size: 1.1rem;
    margin-top: 0;
}

.gmw-stylebook-tech ul {
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.gmw-stylebook-tech li {
    margin-bottom: 0.5rem;
}

.gmw-stylebook-tech a[href="#"] {
    color: #888;
    font-size: 0.85rem;
}

.gmw-stylebook-tech hr {
    margin: 2rem 0;
}

.gmw-stylebook-license {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gmw-stylebook-license-text {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.gmw-stylebook-preview.gmw-preview-transparent {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.gmw-preview-transparent .gmw-card {
    background: none;
    border-color: #ddd;
}

.gmw-preview-transparent .gmw-placeholder {
    background: none;
    border-color: #ccc;
}

.gmw-preview-transparent .gmw-contact-map {
    border-color: #666;
    color: #666;
}

.gmw-preview-transparent .gmw-contact-map:hover {
    background: #666;
    color: #fff;
}

.gmw-preview-transparent .gmw-menu-link {
    background: none;
    padding: 0;
    color: #333;
}

.gmw-preview-transparent .gmw-menu-link:hover {
    background: none;
    text-decoration: underline;
}

.gmw-theme-dark.gmw-preview-transparent .gmw-menu-link {
    color: #88b4f0;
}

.gmw-preview-transparent .gmw-social-link {
    background: transparent;
}
