/* Genel Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Stiller */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header h1 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header h1 i {
    color: #3498db;
    margin-right: 15px;
}

.header-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.stat i {
    margin-right: 8px;
}

/* Alert Stiller */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-weight: 500;
    animation: fadeInDown 0.5s ease;
}

.alert i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.alert-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.alert-error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* Ana İçerik */
.main-content {
    display: grid;
    gap: 30px;
}

/* Form Bölümü */
.form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.form-section h2 i {
    margin-right: 10px;
    color: #3498db;
}

.randevu-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.form-group label i {
    margin-right: 8px;
    color: #3498db;
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.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);
    transform: translateY(-2px);
}

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

/* Buton Stiller */
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
}

.btn-print {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.btn-delete {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 12px;
    font-size: 0.8rem;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* Liste Bölümü */
.list-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.list-header h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.list-header h2 i {
    margin-right: 10px;
    color: #3498db;
}

.list-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* Sıralama Bölümü */
.sorting-section {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.sorting-section label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    white-space: nowrap;
}

.sorting-section label i {
    margin-right: 5px;
    color: #3498db;
}

.sorting-select {
    padding: 6px 10px;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.sorting-select:hover {
    border-color: #3498db;
}

/* Arama Bölümü */
.search-section {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-box label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.search-box label i {
    margin-right: 8px;
    color: #3498db;
    font-size: 1.1rem;
}

.search-box input[type="text"] {
    padding: 12px 15px;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    transition: all 0.3s ease;
    width: 100%;
}

.search-box input[type="text"]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    transform: translateY(-1px);
}

.search-box input[type="text"]:hover {
    border-color: #3498db;
}

.search-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

#searchResults {
    font-weight: 500;
}

#clearSearch {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

#clearSearch:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

#clearSearch i {
    font-size: 0.7rem;
}

/* Tablo Stiller */
.table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.randevu-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.randevu-table th {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.randevu-table th i {
    margin-right: 5px;
}

.randevu-table td {
    padding: 12px;
    border-bottom: 1px solid #ecf0f1;
    vertical-align: top;
}

.randevu-table tbody tr {
    transition: all 0.3s ease;
}

.randevu-table tbody tr:hover {
    background: rgba(52, 152, 219, 0.05);
    transform: scale(1.01);
}

.randevu-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

/* Özel Hücre Stiller */
.ad-soyad {
    min-width: 150px;
}

.ad-soyad strong {
    display: block;
    color: #2c3e50;
    font-weight: 600;
}

.gorev {
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.85rem;
}

.talep-tipi {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.talep-bireysel {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.talep-kurumsal {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.kurum-adi {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 5px;
    font-weight: 500;
}

.telefon {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 1px;
}

.gecen-gun {
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
}

.aciliyet {
    padding: 4px 10px;
    border-radius: 15px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.konu-text {
    max-width: 200px;
    cursor: help;
}

.konu-yok {
    color: #bdc3c7;
    font-style: italic;
    font-size: 0.85rem;
}

/* Boş Durum */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #bdc3c7;
}

.empty-state p {
    font-size: 1.2rem;
    font-weight: 500;
}

.debug-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 8px;
    text-align: left;
}

.debug-info p {
    font-size: 0.9rem;
    margin: 5px 0;
}

.debug-info .btn {
    margin-top: 10px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Animasyonlar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    animation: fadeIn 0.8s ease;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        min-width: auto;
    }
    
    .list-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .list-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .sorting-section {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }
    
    .sorting-select {
        min-width: auto;
        width: 100%;
    }
    
    .search-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .search-results {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    #clearSearch {
        align-self: flex-end;
    }
    
    .randevu-table {
        font-size: 0.85rem;
    }
    
    .randevu-table th,
    .randevu-table td {
        padding: 8px 6px;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.2rem;
    }
    
    .form-section,
    .list-section {
        padding: 20px;
    }
    
    .randevu-table {
        font-size: 0.8rem;
    }
    
    .konu-text {
        max-width: 120px;
    }
}

/* Yeni Özellikler İçin Stiller */
.bulk-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.btn-info {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
}

.btn-sm {
    padding: 6px 10px;
    font-size: 0.8rem;
}

/* Tablo Yeni Stiller */
.center {
    text-align: center;
}

.person-details {
    min-width: 200px;
}

.person-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.person-name {
    font-weight: 600;
    color: #2c3e50;
}

.person-type {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.type-bireysel {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.type-kurumsal {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.company-details {
    margin-top: 5px;
}

.company-name, .position {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2px;
}

.company-name i, .position i {
    margin-right: 5px;
    width: 12px;
}

.phone-cell {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2c3e50;
}

.date-cell {
    font-weight: 500;
}

.time-badge {
    padding: 4px 8px;
    border-radius: 10px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    min-width: 50px;
}

.priority-badge {
    padding: 4px 10px;
    border-radius: 15px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
}

.priority-düşük { background: linear-gradient(135deg, #28a745, #20c997); }
.priority-normal { background: linear-gradient(135deg, #007bff, #0056b3); }
.priority-yüksek { background: linear-gradient(135deg, #fd7e14, #e55a00); }
.priority-acil { background: linear-gradient(135deg, #dc3545, #c62a3b); }

.subject-cell {
    max-width: 300px;
}

.subject-content {
    max-height: 60px;
    overflow-y: auto;
    font-size: 0.9rem;
    line-height: 1.4;
}

.no-subject {
    color: #bdc3c7;
    font-style: italic;
    font-size: 0.85rem;
}

.action-cell {
    text-align: center;
}

.user-cell {
    text-align: center;
}

.user-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.user-name i {
    margin-right: 5px;
    color: #3498db;
}

.user-info {
    text-align: center;
}

.user-info .user-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

/* Verilen Randevular Sayfası Özel Stiller */
.print-info {
    margin-bottom: 25px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.print-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.print-date {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.person-info {
    min-width: 200px;
}

.person-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.company-info {
    margin-top: 8px;
}

.company-name {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.position {
    color: #6c757d;
    font-style: italic;
    font-size: 0.85rem;
}

.phone-number {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2c3e50;
}

.date-info {
    font-weight: 500;
    color: #495057;
}

.subject-full {
    max-width: 400px;
    line-height: 1.5;
}

.completed-row {
    background: rgba(40, 167, 69, 0.05);
    border-left: 4px solid #28a745;
}

.completed-row:hover {
    background: rgba(40, 167, 69, 0.1);
}

.print-footer {
    margin-top: 40px;
    page-break-inside: avoid;
}

.signature-area {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    gap: 50px;
}

.signature-box {
    text-align: center;
    min-width: 200px;
}

.signature-box p {
    margin-bottom: 40px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.signature-line {
    border-bottom: 2px solid #2c3e50;
    width: 100%;
}

/* Gidilecek Yerler Sayfası Özel Stiller */
.place-details {
    min-width: 200px;
}

.place-header {
    margin-bottom: 5px;
}

.place-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.contact-info, .address-info {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info i, .address-info i {
    color: #3498db;
    width: 12px;
}

.days-info {
    font-size: 0.8rem;
    margin-top: 3px;
}

.days-left {
    font-weight: 600;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 15px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
}

.completion-date {
    font-size: 0.7rem;
    color: #666;
    margin-top: 3px;
    text-align: center;
}

.purpose-cell {
    max-width: 300px;
    line-height: 1.4;
}

.purpose-content, .notes-content {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.purpose-content strong, .notes-content strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 2px;
}

.no-content {
    color: #bdc3c7;
    font-style: italic;
    font-size: 0.85rem;
}

.yer-row {
    transition: all 0.3s ease;
}

.yer-row:hover {
    background: rgba(23, 162, 184, 0.05);
    transform: scale(1.01);
}

.yer-checkbox {
    transform: scale(1.2);
    cursor: pointer;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.action-buttons .btn {
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: modalFadeIn 0.3s ease;
}

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

.modal-header {
    padding: 20px 25px;
    border-bottom: 2px solid #e0e6ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-header h3 i {
    margin-right: 10px;
    color: #3498db;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #e74c3c;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 2px solid #e0e6ed;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

/* Gerçekleştirilen Yerler Özel Stiller */
.completion-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 10px;
}

.completion-date-cell {
    text-align: center;
}

.completion-date-main {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.date-difference {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Ekran/Yazdırma Görünüm Kontrolü */
.no-screen {
    display: none;
}

@media print {
    .no-screen {
        display: block !important;
    }
}

/* Yazdırma Stiller - Geliştirilmiş */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 11px !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        padding: 15px !important;
    }
    
    .container {
        max-width: none !important;
        padding: 0 !important;
        animation: none !important;
    }
    
    .no-print {
        display: none !important;
    }
    
    .header {
        background: white !important;
        box-shadow: none !important;
        border-bottom: 3px solid #2c3e50 !important;
        margin-bottom: 20px !important;
        padding: 15px 0 !important;
    }
    
    .header h1 {
        color: #2c3e50 !important;
        font-size: 24px !important;
        text-align: center !important;
        margin: 0 !important;
        font-weight: bold !important;
    }
    
    .header-stats {
        display: none !important;
    }
    
    .form-section {
        display: none !important;
    }
    
    .list-section {
        background: white !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    
    .list-header {
        display: none !important;
    }
    
    .list-header h2 {
        display: none !important;
    }
    
    .print-info {
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .print-header h3 {
        color: #2c3e50 !important;
        font-size: 20px !important;
        margin-bottom: 10px !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
    }
    
    .print-date {
        color: #666 !important;
        font-size: 12px !important;
        margin: 0 !important;
    }
    
    .randevu-table {
        width: 100% !important;
        border-collapse: collapse !important;
        border: 2px solid #2c3e50 !important;
        margin: 0 !important;
    }
    
    .randevu-table th {
        background: linear-gradient(135deg, #34495e, #2c3e50) !important;
        color: white !important;
        border: 1px solid #2c3e50 !important;
        padding: 8px 6px !important;
        font-weight: bold !important;
        text-align: left !important;
        font-size: 10px !important;
    }
    
    .randevu-table td {
        border: 1px solid #2c3e50 !important;
        padding: 6px 4px !important;
        vertical-align: top !important;
        font-size: 10px !important;
    }
    
    .randevu-table tr:nth-child(even) {
        background: #f8f9fa !important;
    }
    
    .center {
        text-align: center !important;
    }
    
    .person-name {
        font-weight: bold !important;
        color: #2c3e50 !important;
        font-size: 11px !important;
    }
    
    .person-type {
        background: #e9ecef !important;
        color: #495057 !important;
        border: 1px solid #adb5bd !important;
        padding: 1px 4px !important;
        border-radius: 3px !important;
        font-size: 8px !important;
        font-weight: bold !important;
    }
    
    .company-name {
        font-weight: bold !important;
        color: #495057 !important;
        font-size: 9px !important;
    }
    
    .position {
        color: #6c757d !important;
        font-style: italic !important;
        font-size: 9px !important;
    }
    
    .phone-cell {
        font-family: 'Courier New', monospace !important;
        font-weight: bold !important;
        font-size: 10px !important;
    }
    
    .time-badge {
        background: #e9ecef !important;
        color: #495057 !important;
        border: 1px solid #adb5bd !important;
        padding: 2px 4px !important;
        border-radius: 3px !important;
        font-size: 8px !important;
        font-weight: bold !important;
    }
    
    .priority-badge {
        padding: 2px 6px !important;
        border-radius: 3px !important;
        color: white !important;
        font-size: 8px !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
    }
    
    .priority-düşük { 
        background: #28a745 !important; 
    }
    .priority-normal { 
        background: #007bff !important; 
    }
    .priority-yüksek { 
        background: #fd7e14 !important; 
    }
    .priority-acil { 
        background: #dc3545 !important; 
    }
    
    .subject-content {
        font-size: 9px !important;
        line-height: 1.2 !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .no-subject {
        color: #6c757d !important;
        font-style: italic !important;
        font-size: 9px !important;
    }
    
    .user-cell,
    .user-info {
        text-align: center !important;
    }
    
    .user-name {
        font-weight: bold !important;
        color: #2c3e50 !important;
        font-size: 9px !important;
    }
    
    .user-name i {
        margin-right: 3px !important;
        color: #495057 !important;
    }
    
    .print-footer {
        display: none !important;
    }
    
    .signature-area {
        display: none !important;
    }
    
    .signature-box {
        display: none !important;
    }
    
    .alert {
        display: none !important;
    }
    
    /* Sayfa kırılması kontrolü */
    .randevu-table {
        page-break-inside: auto !important;
    }
    
    .randevu-table tr {
        page-break-inside: avoid !important;
        page-break-after: auto !important;
    }
    
    .randevu-table thead {
        display: table-header-group !important;
    }
    
    .print-header,
    .signature-area {
        page-break-inside: avoid !important;
    }
    
    /* Kompakt yazdırma stili */
    .compact-print {
        font-size: 9px !important;
    }
    
    .compact-print th,
    .compact-print td {
        padding: 4px 3px !important;
    }
    
    .completed-row {
        background: #f8f9fa !important;
    }
    
    .randevu-row:hover {
        background: inherit !important;
        transform: none !important;
    }
}
