#easystickerdesigns_form .col-lg-12.col-lg-offset-3 {
    margin-left: 0;
}
.easyposition-grid {
    display: grid;
    grid-template-columns: repeat(3, 40px);
    grid-gap: 5px;
    margin-top: 5px;
}
.easyposition-cell {
    width: 40px;
    height: 40px;
    border: 1px solid #bbcdd2;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.easyposition-cell:hover {
    background-color: #e6e6e6; 
}
.easyposition-cell.selected {
    background-color: #00aff0;
    border-color: #008abd;
    box-shadow: inset 0 0 0 2px white;
}
.easyposition-cell.selected::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.text-sticker-selector .sticker-item:hover {
    border-color: #00aff0 !important;
    background-color: #f5f5f5;
}
.text-sticker-selector .sticker-item.selected {
    border-color: #00aff0 !important;
    background-color: #e6f7ff;
}
.text-sticker-selector .sticker-item.selected::after {
    content: "✓";
    position: absolute;
    top: -5px;
    right: -5px;
    background: #00aff0;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.image-sticker-selector .sticker-item:hover {
    border-color: #00aff0 !important;
    background-color: #f5f5f5;
}
.image-sticker-selector .sticker-item.selected {
    border-color: #00aff0 !important;
    background-color: #e6f7ff;
}
.image-sticker-selector .sticker-item.selected::after {
    content: "✓";
    position: absolute;
    top: -5px;
    right: -5px;
    background: #00aff0;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Miniaturas en listado de stickers */
.table-stickerdesigns img {
    transition: all 0.3s ease;
    border-radius: 3px;
}

.table-stickerdesigns img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 175, 240, 0.5);
}

/* Lightbox simple */
.sticker-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.sticker-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid white;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.sticker-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

/* Añade esto en tu archivo CSS o directamente en el template */
.dashboard-panel {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
}

.dashboard-panel h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.module-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.module-link {
    flex: 1 0 200px;
    text-align: center;
    padding: 20px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #555;
    background: #f8f9fa;
}

.module-link:hover {
    background: #fff;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #007bff;
}

.module-link i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
    color: #007bff;
}

.module-link h4 {
    margin: 10px 0 5px;
    font-size: 16px;
}

.module-link p {
    font-size: 12px;
    color: #777;
    margin: 0;
}