/*
https://modelsite.ir
*/


/* --- General Container & Styling --- */
.csv-container {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

/* --- Search Form --- */
#csv-search-area {
    margin-bottom: 20px;
}

#csv-search-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

#csv-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#csv-search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* --- Results & List Items (Updated Style) --- */
#csv-content-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#csv-content-area li {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Default subtle shadow */
    transition: box-shadow 0.2s, transform 0.2s;
    margin-bottom: 12px; /* This creates the separation */
    list-style: none;
}

#csv-content-area li:last-child {
    margin-bottom: 0; /* No margin for the last item */
}

#csv-content-area li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Stronger shadow on hover */
}

#csv-content-area li strong {
    display: block;
    font-size: 1.1em;
    color: #111827;
    margin-bottom: 6px;
}

#csv-content-area li div {
    font-size: 1.4em;
    color: #6b7280;
    line-height: 1.7;
}

#csv-content-area p { /* Style for 'no results' message */
    text-align: center;
    padding: 30px;
    color: #6b7280;
    background-color: #fff;
    border-radius: 8px;
}

/* --- Loading Indicator --- */
.csv-loading {
    text-align: center;
    padding: 30px;
    color: #6b7280;
    font-weight: 500;
}

/* --- Pagination --- */
#csv-pagination-area {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-numbers {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.page-numbers:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.page-numbers.current {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    font-weight: 600;
}

.page-numbers.dots {
    border: none;
    background: none;
}
