#rally-detail-modal .modal-content {
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.rally-detail-header {
    flex-shrink: 0;
}

.rally-detail-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.rally-detail-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.rally-detail-date {
    font-size: 1rem;
    color: #555;
    padding: 6px 0 12px;
    text-align: center;
}

.rally-detail-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.rally-detail-btn {
    display: block;
    margin: 10px auto 10px;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #4285f4, #3b78e7);
    color: #fff;
    min-width: 200px;
}

.rally-detail-btn.disabled {
    background: #e5e7eb;
    color: #6b7280;
    cursor: not-allowed;
}
