/* Custom CSS for Blessency Wall */

body {
    background: linear-gradient(to bottom right, #a78bfa, #60a5fa);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.blessency-wall-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Glassmorphism effect for cards and inputs */
.bg-opacity-20 {
    background-color: rgba(255, 255, 255, 0.2);
}
.bg-opacity-30 {
    background-color: rgba(255, 255, 255, 0.3);
}
.bg-opacity-40 {
    background-color: rgba(255, 255, 255, 0.4);
}
.backdrop-blur-lg {
    backdrop-filter: blur(10px);
}
.border-opacity-30 {
    border-color: rgba(255, 255, 255, 0.3);
}
.border-opacity-40 {
    border-color: rgba(255, 255, 255, 0.4);
}

.blessency-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.blessency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.editor-btn {
    background-color: rgba(255, 255, 255, 0.2);
}

.editor-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* At the top of the button */
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
