.pws-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #2c3e50;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pws-card {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.dashboard-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.dashboard-logo-left {
    position: absolute;
    left: 0;
}

.dashboard-logo-right {
    position: absolute;
    right: 0;
}

.dashboard-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-align: center;
    flex-grow: 1;
    margin: 0;
}

.dashboard-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: #34495e;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-value {
    font-size: 1.2rem;
    color: white;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.action-btn {
    width: 180px;
    height: 50px;
    font-size: 14px;
    font-weight: 700;
    background-color: #7f8c8d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.action-btn:hover {
    background-color: #95a5a6;
    transform: scale(1.05);
}

.action-btn:active {
    transform: scale(0.98);
}

.modal-btn-cancel {
    background-color: #bdc3c7;
}

.modal-btn-save {
    background-color: #3498db;
}

.modal-card {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
    width: 95%;
    max-width: 1050px;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content {
    color: black;
}

.modal-header {
    background-color: #ecf0f1;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #bdc3c7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
}

.pws-form {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: black;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    color: black;
}

.pws-search-input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    color: black;
}

.pws-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.pws-table th,
.pws-table td {
    border: 1px solid #bdc3c7;
    padding: 0.75rem;
    text-align: left;
}

.pws-table th {
    background-color: #ecf0f1;
    font-weight: 600;
}

.pws-quantity-input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    color: black;
}

.pws-basket h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: black;
}