/* Physie Week Planner Styles */
.pwp-planner-table-container {
    overflow-x: auto;
    background: url('../images/bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 20px;
    border-radius: 10px;
}

.pwp-planner-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    background: rgba(255, 255, 255, 0.5);
}

.pwp-planner-table th {
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
}

.pwp-planner-table th:nth-child(1) { background-color: #7b58a5; }
.pwp-planner-table th:nth-child(2) { background-color: #8c6eb5; }
.pwp-planner-table th:nth-child(3) { background-color: #9d83c4; }
.pwp-planner-table th:nth-child(4) { background-color: #7b58a5; }
.pwp-planner-table th:nth-child(5) { background-color: #4db8b8; }

.pwp-day-column {
    vertical-align: top;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.1);
}

.pwp-event-card {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pwp-event-time {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 5px;
}

.pwp-event-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.pwp-event-age, .pwp-event-location {
    font-size: 12px;
    opacity: 0.9;
}

/* Color Themes */
.pwp-color-purple { background-color: #8b5a96; color: #fff; }
.pwp-color-teal { background-color: #4db8b8; color: #fff; }
.pwp-color-yellow { background-color: #e5cc4d; color: #333; }
.pwp-color-pink { background-color: #d199c9; color: #333; }
