.lmm-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.lmm-event-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.lmm-event-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lmm-event-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.3em;
}

.lmm-event-card h3 a {
    text-decoration: none;
    color: #333;
}

.lmm-event-card h3 a:hover {
    color: #007cba;
}

.lmm-event-meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.lmm-event-excerpt {
    line-height: 1.6;
    margin-bottom: 15px;
}

.lmm-event-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lmm-badge-verified {
    background: #d4edda;
    color: #155724;
}

.lmm-badge-claimed {
    background: #cce5ff;
    color: #004085;
}

.lmm-search-form {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.lmm-search-form input[type="text"] {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

.lmm-search-form input[type="submit"] {
    padding: 10px 20px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.lmm-search-form input[type="submit"]:hover {
    background: #005a87;
}

.lmm-pagination {
    text-align: center;
    margin: 30px 0;
}

.lmm-pagination a,
.lmm-pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
}

.lmm-pagination a:hover {
    background: #f0f0f0;
}

.lmm-pagination .current {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.lmm-event-submission-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lmm-form-group {
    margin-bottom: 20px;
}

.lmm-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.lmm-form-group input,
.lmm-form-group textarea,
.lmm-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.lmm-form-group textarea {
    height: 100px;
    resize: vertical;
}

.lmm-form-group.required label::after {
    content: " *";
    color: red;
}

.lmm-schedule-container {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    background: #f9f9f9;
}

.lmm-schedule-day {
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 4px;
    border: 1px solid #eee;
}

.lmm-schedule-day h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.lmm-schedule-day p {
    margin: 10px 0;
}

.lmm-schedule-day label {
    display: inline-block;
    width: 120px;
    margin-right: 10px;
}

.lmm-schedule-day input {
    width: 150px;
}

.lmm-add-schedule-day,
.lmm-remove-schedule-day {
    background: #007cba;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.lmm-remove-schedule-day {
    background: #dc3232;
}

.lmm-add-schedule-day:hover {
    background: #005a87;
}

.lmm-remove-schedule-day:hover {
    background: #a00;
}

.lmm-form-submit {
    text-align: center;
    margin-top: 30px;
}

.lmm-form-submit input[type="submit"] {
    background: #007cba;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.lmm-form-submit input[type="submit"]:hover {
    background: #005a87;
}

.lmm-form-submit input[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#new-venue-fields {
    margin-top: 15px;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.lmm-error {
    color: #dc3232;
    font-size: 0.9em;
    margin-top: 5px;
}

.lmm-success {
    color: #46b450;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Single Event/Venue Page Styles */
.lmm-single-event,
.lmm-single-venue {
    max-width: 800px;
    margin: 0 auto;
}

.lmm-event-header,
.lmm-venue-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.lmm-event-title,
.lmm-venue-title {
    font-size: 2.5em;
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.lmm-event-summary,
.lmm-venue-summary {
    font-size: 1.2em;
    color: #666;
    line-height: 1.6;
}

.lmm-event-section,
.lmm-venue-section {
    margin: 30px 0;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.lmm-event-section:last-child,
.lmm-venue-section:last-child {
    border-bottom: none;
}

.lmm-event-section h3,
.lmm-venue-section h3 {
    margin: 0 0 15px 0;
    color: #34495e;
    font-size: 1.4em;
}

.lmm-venue-address,
.lmm-venue-contact {
    margin-left: 20px;
}

.lmm-address-line,
.lmm-contact-item {
    margin: 8px 0;
}

.lmm-contact-item strong {
    color: #2c3e50;
    margin-right: 8px;
}

.lmm-venue-events {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.lmm-event-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.lmm-event-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lmm-event-card-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.lmm-event-card-title a {
    text-decoration: none;
    color: #2c3e50;
}

.lmm-event-card-title a:hover {
    color: #3498db;
}

.lmm-event-card-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.lmm-event-card-meta {
    font-size: 0.9em;
    color: #777;
}

.lmm-event-status {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 10px;
}

.lmm-status-verified {
    background: #d4edda;
    color: #155724;
}

.lmm-status-claimed {
    background: #cce5ff;
    color: #004085;
}

.lmm-button {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.lmm-button:hover {
    background: #2980b9;
    color: white;
}

.lmm-button-primary {
    background: #3498db;
}

.lmm-button-secondary {
    background: #95a5a6;
}

.lmm-button-secondary:hover {
    background: #7f8c8d;
}

.lmm-venue-navigation,
.lmm-event-navigation {
    text-align: center;
    margin: 40px 0 20px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.lmm-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.lmm-venue-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.lmm-venue-card:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.lmm-venue-card-header {
    margin-bottom: 15px;
}

.lmm-venue-card-title {
    margin: 0 0 8px 0;
    font-size: 1.3em;
}

.lmm-venue-card-title a {
    text-decoration: none;
    color: #2c3e50;
}

.lmm-venue-card-title a:hover {
    color: #3498db;
}

.lmm-venue-card-location {
    color: #7f8c8d;
    font-size: 0.9em;
    font-weight: 500;
}

.lmm-venue-card-description {
    color: #666;
    line-height: 1.6;
    margin: 15px 0;
}

.lmm-venue-card-address {
    color: #777;
    font-size: 0.9em;
    margin: 10px 0;
}

.lmm-venue-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.lmm-venue-card-events {
    color: #7f8c8d;
    font-size: 0.9em;
}

.lmm-venue-card-actions a {
    margin-left: 8px;
    padding: 6px 12px;
    font-size: 0.9em;
}

.lmm-no-events,
.lmm-no-venues {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.lmm-no-events h3,
.lmm-no-venues h3 {
    color: #7f8c8d;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .lmm-events-grid,
    .lmm-venues-grid {
        grid-template-columns: 1fr;
    }
    
    .lmm-event-submission-form {
        margin: 10px;
        padding: 15px;
    }
    
    .lmm-schedule-day label {
        display: block;
        width: auto;
        margin-bottom: 5px;
    }
    
    .lmm-schedule-day input {
        width: 100%;
    }
    
    .lmm-venue-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .lmm-venue-card-actions {
        text-align: center;
    }
    
    .lmm-venue-card-actions a {
        margin: 0 4px;
    }
}