/* HRB Booking Plugin Styles */

.hrb-personnel-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.hrb-personnel-item {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hrb-personnel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.hrb-personnel-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.hrb-personnel-info {
    padding: 20px;
}

.hrb-personnel-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.hrb-price {
    color: #e53e3e;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.hrb-excerpt {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.5;
}

.hrb-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3182ce;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.hrb-btn:hover {
    background-color: #2b6cb0;
    color: #fff;
}

/* Booking Form */
.hrb-booking-wrapper {
    background: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid #e2e8f0;
}

.hrb-booking-wrapper h3 {
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

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

.hrb-form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #2d3748;
}

.hrb-form-group input[type="text"],
.hrb-form-group input[type="tel"],
.hrb-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

.hrb-form-group input:focus,
.hrb-form-group textarea:focus {
    border-color: #3182ce;
    outline: none;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}

.hrb-cost-preview {
    background: #ebf8ff;
    padding: 15px;
    border-left: 4px solid #3182ce;
    border-radius: 4px;
    font-size: 1.1rem;
}

.hrb-cost-preview p {
    margin: 0;
}

.hrb-btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

#hrb-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

#hrb-form-message.success {
    background-color: #c6f6d5;
    color: #22543d;
    display: block;
}

#hrb-form-message.error {
    background-color: #fed7d7;
    color: #822727;
    display: block;
}
