/**
 * Indtees Sales Manager Frontend Styles
 */

/* Base Styles */
.indtees-form {
    max-width: 500px;
    margin: 0 auto;
}

.indtees-form-group {
    margin-bottom: 20px;
}

.indtees-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.indtees-form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.indtees-form-control:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

/* Buttons */
.indtees-btn {
    background: #0073aa;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.indtees-btn:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

.indtees-btn-secondary {
    background: #6c757d;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.indtees-btn-secondary:hover {
    background: #5a6268;
    color: white;
    text-decoration: none;
}

/* Messages */
.indtees-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.indtees-success {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.indtees-warning {
    background: #fff3cd;
    color: #856404;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #ffeaa7;
}

/* Tables */
.indtees-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.indtees-table th,
.indtees-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.indtees-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #495057;
}

.indtees-table tbody tr:hover {
    background: #f8f9fa;
}

/* Checkbox Labels */
.indtees-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.indtees-checkbox-label input[type="checkbox"] {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .indtees-form {
        padding: 0 20px;
    }
    
    .indtees-table {
        font-size: 14px;
    }
    
    .indtees-table th,
    .indtees-table td {
        padding: 8px;
    }
}