
.epts-card {
    font-family: 'Rubik', sans-serif;
    background: #fff8e1;
    border: 1px solid #ffcc00;
    border-radius: 6px;
    margin: 15px 0;
    padding: 15px;
}
.epts-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ffeb3b;
}
.epts-row:last-child {
    border-bottom: none;
}
.epts-label {
    font-weight: bold;
    color: #333;
}
.epts-value {
    color: #111;
}
.epts-button {
    display: inline-block;
    background-color: #388e3c;
    color: white;
    padding: 10px 15px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}
.epts-button i {
    margin-right: 6px;
}
@media (max-width: 768px) {
    .epts-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
