.trp-box {
    max-width: 700px;
    margin: 20px auto;
    padding: 35px;
    background: #fff0;
    border: 0.5px solid #715b3e;
    border-radius: 0px;
}

.trp-box h2 {
    display: none;
}

.trp-box input,
.trp-box select,
.trp-box textarea,
.trp-box button {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

.trp-box button {
    background: #715b3e;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.trp-box button:hover {
    background: #5f4c32;
}

#trp-msg {
    text-align: center;
    font-weight: bold;
    color: #0073aa;
}

table.widefat.striped {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table.widefat.striped th,
table.widefat.striped td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

table.widefat.striped tr:nth-child(even) {
    background: none;
}

table.widefat.striped a {
    color: #0073aa;
    text-decoration: none;
}

table.widefat.striped a:hover {
    text-decoration: underline;
}

#trp-calendar {
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fc .fc-toolbar-title {
    font-size: 24px;
    font-weight: bold;
}

.fc-event {
    background-color: #0073aa;
    color: #fff;
    padding: 4px 6px;
    font-size: 13px;
    cursor: pointer;
}

.trp-modal {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index: 9999;
}

.trp-modal-content {
    background:#fff;
    padding:25px;
    width: 400px;
    max-width: 90%;
}

.trp-modal-content h3 {
    margin-top:0;
}

.trp-modal-content input,
.trp-modal-content select,
.trp-modal-content textarea {
    margin-bottom: 12px;
}