/**
 * TBF Takvim - Organization Detail
 * Organizasyon detay sayfası stilleri
 */

/* ===== ORGANİZASYON DETAY CONTAINER ===== */
.tbf-organization-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== HEADER CARD ===== */
.tbf-org-detail-header-card {
    background: var(--tbf-gradient-primary);
    color: white;
    padding: 40px;
    border-radius: var(--tbf-border-radius);
    margin-bottom: 30px;
    box-shadow: var(--tbf-box-shadow);
    position: relative;
    overflow: hidden;
}

.tbf-org-detail-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tbf-org-detail-header-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.tbf-org-detail-left-section {
    flex: 1;
}

.tbf-org-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tbf-org-detail-subtitle {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    opacity: 0.9;
    line-height: 1.4;
}

.tbf-org-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 70px;
    max-width: 100%;
}

/* Right section removed - info moved to badges */

/* ===== CONTENT LAYOUT ===== */
.tbf-org-detail-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 30px;
}

.tbf-org-detail-main {
    display: flex;
    gap: 30px;
    width: 100%;
}

.tbf-org-detail-sidebar {
    flex: 0 0 350px;
}

.tbf-org-detail-tabs-section {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* ===== INFO CARDS ===== */
.tbf-org-info-card, 
.tbf-org-files-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tbf-org-info-card:hover,
.tbf-org-files-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tbf-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tbf-text-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tbf-light-gray);
}

/* ===== INFO LIST ===== */
.tbf-org-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tbf-org-info-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.tbf-org-info-item:last-child {
    border-bottom: none;
}

.tbf-org-info-item:hover {
    background: #f8f9fa;
    margin: 0 -12px;
    padding: 16px 12px;
    border-radius: 8px;
}

.tbf-info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    width: 100%;
}

.tbf-info-label {
    font-size: 0.85em;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.tbf-info-value {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

/* ===== FILES SECTION ===== */
.tbf-files-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tbf-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tbf-file-item:hover {
    background: #e9ecef;
    border-color: var(--tbf-primary-color);
}

.tbf-file-info {
    flex: 1;
}

.tbf-file-name {
    font-weight: 600;
    color: var(--tbf-text-color);
    margin-bottom: 4px;
}

.tbf-file-description {
    font-size: 0.9rem;
    color: var(--tbf-text-muted);
}

.tbf-file-download-btn {
    background: var(--tbf-primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--tbf-transition);
}

.tbf-file-download-btn:hover {
    background: var(--tbf-secondary-color);
    text-decoration: none;
    color: white;
}

/* Dosya Buton Grupları */
.tbf-file-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Dosya yoksa empty state */
.tbf-empty-state {
    text-align: center;
    padding: 30px 15px;
    color: var(--tbf-text-muted);
}

.tbf-empty-state .tbf-empty-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.tbf-empty-state p {
    margin: 10px 0;
    font-weight: 600;
    color: var(--tbf-text-color);
}

.tbf-empty-state small {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== PROGRAM SECTION ===== */
.tbf-program-section {
    width: 100%;
}

.tbf-program-day {
    margin-bottom: 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.tbf-program-day-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 25px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tbf-program-day-header h3 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
}

.tbf-program-day-header span {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
}

.tbf-program-items {
    padding: 0;
}

.tbf-program-item {
    padding: 20px 25px;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

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

.tbf-program-item:hover {
    background: #f8f9fa;
    margin: 0 -10px;
    padding: 20px 35px;
    border-radius: 8px;
}

.tbf-program-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.tbf-program-item-time {
    background: var(--tbf-primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

.tbf-program-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.tbf-program-item-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
    margin-left: 135px;
}

.tbf-program-item-location {
    color: #495057;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 135px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tbf-program-item-location:before {
    content: "📍";
    font-size: 0.8rem;
}

/* ===== RESULTS SECTION ===== */
.tbf-results-section {
    width: 100%;
}

.tbf-results-files-section {
    margin-top: 20px;
}

.tbf-results-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--tbf-primary-color);
}

.tbf-results-files {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tbf-result-file-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tbf-result-file-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--tbf-primary-color);
}

.tbf-result-file-item .tbf-file-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.tbf-result-file-item .tbf-file-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tbf-result-file-item .tbf-file-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    margin-bottom: 5px;
}

.tbf-file-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.tbf-file-type {
    background: var(--tbf-primary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.tbf-file-size,
.tbf-file-date {
    color: #6c757d;
    font-size: 0.85rem;
}

.tbf-file-actions {
    flex-shrink: 0;
}

.tbf-download-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tbf-download-btn:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* ===== EMPTY STATES ===== */
.tbf-results-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
    margin: 20px 0;
} 

/* Sticky ve Renk Efsanesi stilleri kaldırıldı */

.tbf-file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    border-radius: 12px;
    background: #e9ecef;
    color: #2c3e50;
}

.tbf-icon-pdf {
    background: #e3342f;
    color: #fff;
}

.tbf-icon-xls,
.tbf-icon-xlsx,
.tbf-icon-csv {
    background: #28a745;
    color: #fff;
}

.tbf-icon-doc,
.tbf-icon-docx {
    background: #007bff;
    color: #fff;
}

.tbf-icon-default {
    background: #6c757d;
    color: #fff;
} 

.tbf-calendar-btn-group {
    margin-top: 15px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tbf-calendar-btn {
    background: var(--tbf-secondary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.tbf-calendar-btn:hover {
    background: var(--tbf-secondary-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
} 

.tbf-results-table {
    width:100%;
    border-collapse:collapse;
    margin-top:25px;
}
.tbf-results-table th,
.tbf-results-table td {
    padding:12px 14px;
    border:1px solid #dee2e6;
    font-size:0.9rem;
}
.tbf-results-table th {
    background:#f1f3f5;
    font-weight:600;
    text-align:left;
}
.tbf-results-table tr:hover {
    background:#f8f9fa;
} 

/* Countdown stili kaldırıldı */ 