/* Same CSS as previous version - it works fine */
.tq-quoter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.tq-upload-area {
    border: 3px dashed #ccc;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.tq-upload-area:hover {
    border-color: #0073aa;
    background: #f0f8ff;
}

.tq-upload-area .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #ccc;
}

.tq-upload-area h3 {
    margin: 10px 0;
    color: #333;
}

.tq-upload-info {
    color: #666;
    font-size: 0.9em;
    margin: 5px 0;
}

#tq-file-input {
    display: none;
}

.tq-file-list {
    margin: 20px 0;
}

.tq-file-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    background: #fff;
}

.tq-file-icon {
    margin-right: 10px;
    font-size: 24px;
}

.tq-file-info {
    flex: 1;
}

.tq-file-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.tq-file-details {
    font-size: 0.9em;
    color: #666;
}

.tq-file-remove {
    color: #dc3232;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 20px;
}

.tq-preview {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    background: #fff;
}

.tq-preview h4 {
    margin-top: 0;
    color: #333;
}

.tq-preview-content {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 3px;
    font-size: 0.9em;
}

.tq-form-group {
    margin: 20px 0;
}

.tq-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.tq-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.tq-summary {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.tq-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.tq-summary-item.tq-total {
    font-weight: bold;
    font-size: 1.2em;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tq-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.tq-button {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tq-button-primary {
    background: #0073aa;
    color: white;
}

.tq-button-primary:hover:not(:disabled) {
    background: #005a87;
}

.tq-button-secondary {
    background: #ccc;
    color: #333;
}

.tq-button-secondary:hover {
    background: #bbb;
}

.tq-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tq-notice {
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.tq-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.tq-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.tq-requests-table {
    overflow-x: auto;
}

.tq-requests-table table {
    width: 100%;
    border-collapse: collapse;
}

.tq-requests-table th,
.tq-requests-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.tq-requests-table th {
    background: #f9f9f9;
    font-weight: bold;
}

.tq-status {
    background: #0073aa;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.9em;
}

.tq-login-required {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
}