/**
 * TaBeKa Documents CSS Styles
 */

/* Container */
.tabeka-documents-container {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e1e5e9;
}

/* Header */
.tabeka-documents-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.tabeka-documents-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.tabeka-documents-header h3 {
    color: #333;
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

/* Dokumentenliste */
.tabeka-documents-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.tabeka-document-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Dokument Info */
.tabeka-document-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.tabeka-document-icon {
    font-size: 32px;
    color: #007cba;
}

.tabeka-document-details h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.tabeka-document-date {
    color: #666;
    font-size: 12px;
    font-style: italic;
}

/* Aktionen */
.tabeka-document-actions {
    display: flex;
    gap: 8px;
}

.tabeka-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tabeka-btn-view {
    background-color: #28a745;
    color: white;
}

.tabeka-btn-view:hover {
    background-color: #218838;
    color: white;
    text-decoration: none;
}

.tabeka-btn-download {
    background-color: #007bff;
    color: white;
}

.tabeka-btn-download:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

/* Keine Dokumente */
.tabeka-no-documents {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.tabeka-no-documents p {
    font-size: 16px;
    font-style: italic;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tabeka-document-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .tabeka-document-info {
        justify-content: center;
        text-align: center;
    }
    
    .tabeka-document-actions {
        justify-content: center;
    }
    
    .tabeka-btn {
        flex: 1;
        justify-content: center;
    }
}

/* Admin-Tabelle Styling */
.widefat th,
.widefat td {
    padding: 12px;
}

.widefat code {
    background: #f1f1f1;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
} 