@import url('variables.css');


ul {
    list-style-type: none;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.cron-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cron-card:hover {
    border-color: var(--primary-color);
}

.copy-icon {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.cron-card:active .copy-icon {
    fill: var(--primary-color); 
    color: var(--primary-color);
    opacity: 1; 
}

.cron-text { font-weight: bold; font-size: 1.1em; }
.cron-desc { color: #555; font-size: 0.9em; }

.copy-icon {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}