/* --- VESTING PAGE SPECIFIC STYLES --- */

.tool-container {
    max-width: 800px;
}

/* Creator Page Styles */
.schedules-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
    background-color: var(--background-color);
}

.schedule-input-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

.btn-remove {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-remove:hover {
    background-color: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
    color: #f8d7da;
}

.button-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}
.button-group .btn {
    flex: 1;
}

/* Claim/Dashboard Page Styles */
.progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #161b22;
    border-radius: 5px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
}

.public-schedules {
    width: 100%;
    margin-top: 3rem;
}

.public-schedules h3 {
    text-align: left;
    margin-bottom: 1rem;
}

.table-wrapper {
    overflow-x: auto;
}

#schedules-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

#schedules-table th,
#schedules-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

#schedules-table th {
    font-weight: 600;
    color: var(--text-muted);
}
