.rltrsync-hub {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.rltrsync-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.rltrsync-controls input {
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    flex-grow: 1;
}
.rltrsync-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.rltrsync-table th, .rltrsync-table td {
    border: 1px solid #e5e7eb;
    padding: 12px;
    text-align: left;
}
.rltrsync-table th {
    background-color: #1f2937;
    color: white;
    font-weight: 600;
}
.rltrsync-favorite {
    cursor: pointer;
    font-size: 20px;
    margin-right: 10px;
}
.rltrsync-favorite.favorited {
    color: gold;
}
.rltrsync-add-to-list {
    padding: 5px;
    border-radius: 4px;
}
.rltrsync-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.rltrsync-modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}
.rltrsync-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
.rltrsync-modal-content form p {
    margin: 10px 0;
}
.rltrsync-modal-content input, .rltrsync-modal-content select {
    width: 100%;
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}
.updated {
    background: #dcfce7;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #16a34a;
}
.button-primary {
    background: #2563eb;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.button-primary:hover {
    background: #1e40af;
}
.button {
    background: #6b7280;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
}
.button:hover {
    background: #4b5563;
}