/*
!* app/assets/stylesheets/custom.css *!

!* Todos los estilos anteriores se mantienen igual *!
body {
    background-color: #36393f;
    background-image: linear-gradient(to bottom, #2f3136, #36393f);
    color: #dcddde;
    min-height: 100vh;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.card {
    background: #2f3136;
    border: 1px solid rgba(32, 34, 37, 0.5);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform-origin: 50% 50%;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.card * {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.card:hover {
    background: #36393f;
    border-color: rgba(88, 101, 242, 0.3);
    transform: translateY(-1px);
}

.card.sortable-chosen {
    background: #36393f;
    border-color: #5865f2;
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.card.sortable-ghost {
    opacity: 0.3;
    background: #36393f;
    border: 2px dashed #5865f2;
}

.handle {
    color: #72767d;
    cursor: grab;
    padding: 8px;
    border-radius: 4px;
    background: rgba(79, 84, 92, 0.2);
    pointer-events: auto !important;
    transition: all 0.15s ease;
}

.handle:hover {
    color: #5865f2;
    background: rgba(88, 101, 242, 0.1);
}

.handle:active {
    cursor: grabbing;
}

.rating-indicator {
    display: inline-flex;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    pointer-events: none;
}

.rating-1 { background: #ef4444; }
.rating-2 { background: #f59e0b; }
.rating-3 { background: #3b82f6; }
.rating-4 { background: #10b981; }

.modal {
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #2f3136;
    transform: scale(0.95);
    transition: transform 0.2s ease;
    border: 1px solid rgba(32, 34, 37, 0.5);
    user-select: none;
}

.modal.active .modal-content {
    transform: scale(1);
}

.rating-btn {
    transition: all 0.2s ease;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.rating-btn:hover {
    transform: translateY(-2px);
}

.rating-btn.selected {
    transform: none;
}*/
