/* Yerel Rehberler Plugin Frontend Styles */

/* Multi-Step Form Styles */
.yerel-rehber-basvuru-formu {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Progress Bar */
.yerel-form-progress {
    margin-bottom: 2rem;
}

.yerel-progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 1rem;
}

.yerel-progress-bar::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.yerel-progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    cursor: pointer;
}

.yerel-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
}

.yerel-step-title {
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s ease;
}

.yerel-progress-step.active .yerel-step-number {
    background: #dc3545;
    color: white;
}

.yerel-progress-step.active .yerel-step-title {
    color: #1a1a1a;
    font-weight: 700;
}

.yerel-progress-step.completed .yerel-step-number {
    background: #1a1a1a;
    color: white;
}

.yerel-progress-step.completed .yerel-step-number::after {
    content: '✓';
}

/* Multi-Step Form */
.yerel-multistep-form {
    position: relative;
}

.yerel-form-step {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.yerel-form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.yerel-step-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.yerel-step-header h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.yerel-step-header p {
    color: #7f8c8d;
    margin: 0;
}

/* Kategori Cards */
.yerel-kategori-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.yerel-kategori-card {
    border: 2px solid #e9ecef;
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.yerel-kategori-card:hover {
    border-color: #dc3545;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.15);
}

.yerel-kategori-card.selected {
    border-color: #dc3545;
    background: #fff;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.15);
}

.yerel-kategori-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.yerel-kategori-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.yerel-kategori-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Kategori Form */
.yerel-kategori-form {
    display: none;
    animation: fadeInUp 0.4s ease;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yerel-kategori-form.show {
    display: block !important;
    opacity: 1;
}

.yerel-kategori-form-header {
    background: #f8fbff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.yerel-kategori-form-header h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.yerel-kategori-form-header p {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.9rem;
}

/* Başvuru Özeti */
.basvuru-ozeti {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.ozet-bolum {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e6ed;
}

.ozet-bolum:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.ozet-bolum h5 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.ozet-icerik {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.ozet-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.ozet-item:last-child {
    border-bottom: none;
}

.ozet-label {
    font-weight: 600;
    color: #495057;
}

.ozet-value {
    color: #6c757d;
    text-align: right;
}

/* Navigation Buttons */
.yerel-form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.yerel-nav-button {
    padding: 15px 30px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yerel-nav-button:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
    background: #f8f9fa;
}

.yerel-nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.yerel-submit-button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yerel-submit-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Error States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group.error label {
    color: #dc3545;
}

.form-group.error::after {
    content: "Bu alan zorunludur";
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

/* Animations */
.yerel-form-step.entering {
    animation: slideInRight 0.3s ease-out;
}

.yerel-form-step.leaving {
    animation: slideOutLeft 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100px);
        opacity: 0;
    }
}

/* Loading States */
.yerel-nav-button.loading,
.yerel-submit-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.yerel-nav-button.loading::after,
.yerel-submit-button.loading::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.75s linear infinite;
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .yerel-rehber-basvuru-formu {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .yerel-kategori-cards {
        grid-template-columns: 1fr;
    }
    
    .yerel-progress-bar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .yerel-progress-bar::before {
        display: none;
    }
    
    .yerel-progress-step {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
    
    .yerel-step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .yerel-step-title {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .yerel-form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .yerel-nav-button,
    .yerel-submit-button {
        width: 100%;
    }
    
    .yerel-step-header h4 {
        font-size: 1.25rem;
    }
    
    .ozet-icerik {
        grid-template-columns: 1fr;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .yerel-progress-bar {
        gap: 0.25rem;
    }
    
    .yerel-progress-step {
        min-width: 70px;
    }
    
    .yerel-step-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .yerel-step-title {
        font-size: 0.7rem;
        padding: 0 2px;
    }
}

/* Modern Form Container */
.yerel-rehber-basvuru-formu,
.yerel-firma-basvuru-formu,
.yerel-kampanya-listesi,
.yerel-rehber-paneli,
.yerel-firma-paneli {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Kampanya Grid Stilleri */
.kampanya-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.kampanya-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.kampanya-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.kampanya-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.kampanya-resim {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.kampanya-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kampanya-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.kampanya-content {
    padding: 1.5rem;
}

.kampanya-baslik {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.kampanya-firma {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.firma-icon {
    font-size: 1rem;
}

.kampanya-aciklama {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.kampanya-detaylar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detay-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.detay-icon {
    font-size: 1rem;
}

.kampanya-odul {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin-bottom: 1.5rem;
}

.odul-icon {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.odul-text {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.kampanya-actions {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    display: flex;
    gap: 1rem;
}

.katil-button {
    flex: 1;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.katil-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.detay-button {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detay-button:hover {
    background: #5a6268;
}

/* Kampanya Bulunamadı */
.kampanya-bulunamadi {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.bulunamadi-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.kampanya-bulunamadi h3 {
    font-size: 1.5rem;
    color: #495057;
    margin-bottom: 1rem;
}

.kampanya-bulunamadi p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-header p {
    color: #7f8c8d;
    font-size: 16px;
    margin: 0;
}

/* Form Styling */
.yerel-rehber-form {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.form-help {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    margin-top: 2px;
}

/* Vitrin Checkbox Özel Stil */
.vitrin-checkbox {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.vitrin-checkbox:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.vitrin-checkbox .checkbox-label {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.vitrin-checkbox .form-help {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    font-size: 14px;
}

.vitrin-checkbox .checkbox-label input[type="checkbox"] {
    accent-color: white;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 0;
}

/* Messages */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
    font-weight: 500;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Form Info */
.form-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.form-info h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
}

.form-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-info li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #34495e;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-beklemede {
    background: #fff3cd;
    color: #856404;
}

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

.status-reddedildi {
    background: #f8d7da;
    color: #721c24;
}

/* Başvuru Durum */
.yerel-rehber-basvuru-durum,
.yerel-firma-basvuru-durum {
    max-width: 600px;
    margin: 0 auto;
}

.basvuru-mevcut {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.basvuru-mevcut h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.basvuru-mevcut p {
    margin-bottom: 10px;
    color: #6c757d;
}

.onay-mesaji {
    background: #d4edda;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
}

.onay-mesaji p {
    color: #155724;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Google Rating */
.google-rating {
    color: #ffc107;
    font-weight: bold;
}

/* Kategori Badges */
.kategori-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    color: white;
}

.kategori-yerel_rehber {
    background: #3498db;
}

.kategori-gazeteci {
    background: #e74c3c;
}

.kategori-basin_mensubu {
    background: #e67e22;
}

.kategori-dernek_uyesi {
    background: #9b59b6;
}

.kategori-blog_yazari {
    background: #f39c12;
}

.kategori-influencer {
    background: #e91e63;
}

.kategori-diger {
    background: #95a5a6;
}

/* Form Section Transitions */
.form-section {
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kampanya Cards */
.kampanya-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.kampanya-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kampanya-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.kampanya-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.kampanya-baslik {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.kampanya-turu {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.kampanya-firma {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 10px;
}

.kampanya-aciklama {
    color: #34495e;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.kampanya-detaylar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #7f8c8d;
}

.kampanya-odul {
    background: #f1c40f;
    color: #856404;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.kampanya-actions {
    text-align: center;
}

.katil-button {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.katil-button:hover {
    background: #219a52;
}

.katil-button:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .yerel-rehber-basvuru-formu,
    .yerel-firma-basvuru-formu,
    .yerel-kampanya-listesi,
    .yerel-rehber-paneli,
    .yerel-firma-paneli {
        margin: 10px;
        padding: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .kampanya-listesi {
        grid-template-columns: 1fr;
    }
    
    .kampanya-detaylar {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.button-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Panel Tabs */
.panel-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.panel-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.panel-tab:hover {
    color: #495057;
}

.panel-tab.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.panel-content {
    display: none;
}

.panel-content.active {
    display: block;
}

/* Login Required Styles */
.yr-login-required {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.yr-alert {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border: 1px solid #e9ecef;
}

.yr-alert-info {
    border-left: 4px solid #6c757d;
}

.yr-alert h3 {
    color: #212529;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.yr-alert p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.yr-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.yr-btn-primary {
    background: #212529;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #212529;
}

.yr-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    text-decoration: none;
    background: #dc3545;
    border-color: #dc3545;
}

.yr-btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 37, 41, 0.25);
} 

/* Takvim Butonları Stilleri */
.calendar-buttons {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-buttons h4 {
    margin: 0 0 1rem;
    color: #212529;
    font-size: 1rem;
    font-weight: 600;
}

.calendar-buttons .calendar-btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px 4px 0;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.calendar-btn.google-cal {
    background: #4285f4;
    color: white;
    border-color: #4285f4;
}

.calendar-btn.google-cal:hover {
    background: #3367d6;
    border-color: #3367d6;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.calendar-btn.outlook-cal {
    background: #0078d4;
    color: white;
    border-color: #0078d4;
}

.calendar-btn.outlook-cal:hover {
    background: #106ebe;
    border-color: #106ebe;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.calendar-btn.ics-cal {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.calendar-btn.ics-cal:hover {
    background: #5a6268;
    border-color: #5a6268;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.calendar-buttons p {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: #666;
}

/* Katılım Başarılı Buton */
.katilim-button.success {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
}

.katilim-button.success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
}

/* Katılım İptal Butonu */
.katilim-iptal-button {
    display: inline-block;
    padding: 8px 16px;
    margin: 8px 0 0 0;
    background: #dc3545;
    color: white;
    border: 1px solid #dc3545;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.katilim-iptal-button:hover {
    background: #c82333;
    border-color: #bd2130;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.katilim-iptal-button:disabled {
    background: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Takvim Butonları */
@media (max-width: 768px) {
    .calendar-buttons {
        padding: 0.75rem;
    }
    
    .calendar-buttons .calendar-btn {
        display: block;
        margin: 0 0 8px 0;
        text-align: center;
    }
    
    .calendar-buttons h4 {
        font-size: 0.9rem;
    }
}