p {
    width: auto;
    text-align: center;
}

#background-circle {
    width: 200%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -100;
    background-image: url(../assets/background_circle.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
}

#bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -101;
    background-color: #0A0B11;
    pointer-events: none;
}

/* Notification styles */
.notfiy_text {
    background-color: #fcba0377;
    color: #000;
    max-width: 400px;
    padding: 10px 10px;
    border-radius: 10px;
    margin-top: -60vh;
    opacity: 0;
}

.notfiy_text.show {
    margin-top: -70vh;
    opacity: 1;
}

/* Profile edit explanations */
.profile_edit_explain {
    width: auto;
    text-align: center;
    font-weight: 200;
    opacity: 50%;
    font-size: .75em;
    margin-top: -2%;
}

.profile_edit_explain_omegaprov2 {
    width: auto;
    text-align: center;
    font-weight: 200;
    opacity: 50%;
    font-size: .75em;
    margin-top: -7.6%;
}

/* Color picker styles */
#colorPickerIconImg {
    height: 30px;
    width: 30px;
    filter: invert(1) brightness(2);
}

#colorPickerIconPicker {
    border-radius: 20px;
    overflow: hidden;
}

.iconLayout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    height: 270px;
    overflow-y: auto;
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

/* Chip styles */
.chip {
    background-color: transparent;
    border-radius: 0px;
    border: 1px solid #333333;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 16px;
    padding-right: 16px;
    font-weight: 400;
    color: #cccccc;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 12px;
    box-sizing: border-box;
}

.chip:hover {
    border-color: #59DD4B;
    color: #ffffff;
}

.chip.selected {
    background-color: transparent;
    color: #59DD4B;
    border-color: #59DD4B;
}

/* Button styles */
.btn {
    background-color: #131523;
    border: 1px solid #333333;
    color: #cccccc;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.btn:hover {
    border-color: #59DD4B;
    color: #ffffff;
}

.btn.primary {
    background-color: #59DD4B;
    border-color: #59DD4B;
    color: #000000;
}

.btn.primary:hover {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

/* Card styles */
.card {
    background-color: #1A1E2D99;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #333333;
    box-shadow: 0px 0px 90px rgba(0, 0, 0, 0.3);
}

/* Text styles */
.text-primary {
    color: #59DD4B;
}

.text-secondary {
    color: #cccccc;
}

.text-muted {
    color: #666666;
}

.text-danger {
    color: #ff2c41;
}

.text-success {
    color: #59DD4B;
}

/* Spacing utilities */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Border utilities */
.border {
    border: 1px solid #333333;
}

.border-top {
    border-top: 1px solid #333333;
}

.border-bottom {
    border-bottom: 1px solid #333333;
}

.border-left {
    border-left: 1px solid #333333;
}

.border-right {
    border-right: 1px solid #333333;
}

/* Border radius utilities */
.rounded {
    border-radius: 5px;
}

.rounded-sm {
    border-radius: 2px;
}

.rounded-lg {
    border-radius: 10px;
}

.rounded-xl {
    border-radius: 15px;
}

.rounded-full {
    border-radius: 9999px;
}
