/**
 * Houzez German Invoicing - Frontend Dashboard Styles
 */

/* Document actions in invoice list */
.hgi-document-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.hgi-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.hgi-download-btn:hover {
    background: #e9ecef;
    border-color: #ccc;
    text-decoration: none;
    color: #000;
}

.hgi-download-btn i {
    font-size: 14px;
}

.hgi-download-btn small {
    color: #666;
    font-size: 11px;
}

.hgi-download-btn.cancelled {
    opacity: 0.6;
    text-decoration: line-through;
}

/* Document type specific colors */
.hgi-download-btn.hgi-doc-invoice {
    border-left: 3px solid #0073aa;
}

.hgi-download-btn.hgi-doc-receipt {
    border-left: 3px solid #28a745;
}

.hgi-download-btn.hgi-doc-cancellation {
    border-left: 3px solid #dc3545;
}

/* Documents list table */
.hgi-documents-list {
    margin: 20px 0;
}

.hgi-documents-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.hgi-documents-table th {
    background: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.hgi-documents-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.hgi-documents-table tr:hover {
    background: #f8f9fa;
}

.hgi-documents-table tr.cancelled {
    background: #fef7f7;
}

.hgi-documents-table tr.cancelled td {
    color: #999;
}

/* Status labels */
.hgi-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

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

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

/* Download link in table */
.hgi-download-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #0073aa;
    text-decoration: none;
}

.hgi-download-link:hover {
    color: #005a87;
    text-decoration: underline;
}

.hgi-download-link i {
    font-size: 14px;
}

/* Invoice documents section */
.hgi-invoice-documents {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.hgi-invoice-documents h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
}

.hgi-document-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hgi-document-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

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

.hgi-document-item.cancelled {
    opacity: 0.6;
}

.hgi-document-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
}

.hgi-document-link:hover {
    color: #0073aa;
}

.hgi-doc-type {
    font-weight: 600;
    min-width: 100px;
}

.hgi-doc-number {
    color: #666;
}

.hgi-doc-date {
    color: #999;
    font-size: 12px;
}

.hgi-doc-cancelled {
    color: #dc3545;
    font-size: 12px;
    margin-left: auto;
}

/* Messages */
.hgi-login-required,
.hgi-no-documents {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
    text-align: center;
    color: #666;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hgi-documents-table {
        font-size: 13px;
    }

    .hgi-documents-table th,
    .hgi-documents-table td {
        padding: 10px;
    }

    .hgi-download-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .hgi-download-btn span {
        display: none;
    }
}
