.pdf-manager-container {
    max-width: 100%;
    margin: 20px 0;
}

.pdf-container {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.pdf-date {
    margin: 0;
    padding: 5px 0;
    font-weight: 500;
}

.pdf-date a.pdf-title {
    color: #dd9933;
    text-decoration: none;
    font-weight: bold;
}

.pdf-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.pdf-item:hover {
    background-color: #f8f9fa;
}

.pdf-item .pdf-icon {
    font-size: 18px;
    color: #666;
    margin-right: 10px;
}

.pdf-link {
    text-decoration: none;
    color: #777;
    font-size: 14px;
    transition: color 0.2s ease;
}

.pdf-link:hover {
    color: #888;
    text-decoration: underline;
}

/* Phân trang */
.pdf-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.pdf-pagination a {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.pdf-pagination a:hover {
    border-color: #dd9933;
	color: #dd9933;
}

.pdf-pagination a.active {
    background: #dd9933;
    color: white;
    border-color: #dd9933;
}

/* Loading indicator */
.pdf-loading {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.pdf-header {
    display: flex;
	flex-direction: column;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.pdf-title-wrapper {
    display: block;
}

.pdf-header > div:last-child {
    display: flex;
    align-items: center;
	justify-content: flex-end;
    gap: 15px;
}

.pdf-icon {
    display: flex;
/*     align-items: center; */
    gap: 8px;
    font-size: 16px;
    color: #555;
	overflow: hidden;
}

.pdf-icon b {
    color: #333;
    font-weight: 500;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
/* 	white-space: nowrap; */
}

.toggle-details {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.toggle-details:hover {
    background: #005177;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pdf-files-list {
    padding: 15px 20px;
    background: white;
}

.pdf-date-title {
    font-size: 15px;
    color: #333;
}
.pdf-header-right {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}
.pdf-header-right button {
    background: #dd9933;
    color: white;
    border: none;
    padding: 1px 10px;
    border-radius: 4px;
    margin: 0;
}

@media (max-width: 768px) {
    .pdf-pagination {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 10px;
    }

    .pdf-pagination a {
        flex: 1 1 auto;
        text-align: center;
        min-width: 40px;
        font-size: 14px;
        padding: 6px 8px;
    }
}
