/* ===========================
   GLOBAL RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================
   MAIN CONTAINER
   =========================== */
.hojayfa-container1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ===========================
   GLOWING RED NEON TEXT EFFECT
   =========================== */
.hojayfa-neon-title1 {
            text-align: center;
            margin-bottom: 1.5rem;
            padding: 1rem 0;
	color: #f70c3f;
        }

.hojayfa-neon-title1 h1 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

@keyframes hojayfa-neon-pulse1 {
    from {
        text-shadow: 
            0 0 10px #ff0000,
            0 0 20px #ff0000,
            0 0 30px #ff0000,
            0 0 40px #ff0000,
            0 0 70px #ff0000,
            0 0 80px #ff0000;
    }
    to {
        text-shadow: 
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 15px #ff0000,
            0 0 20px #ff0000,
            0 0 35px #ff0000,
            0 0 40px #ff0000;
    }
}

.hojayfa-subtitle1 {
    text-align: center;
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ===========================
   UPLOAD SECTION WITH DASHED BORDER
   =========================== */
.hojayfa-upload-section1 {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    border: 3px dashed rgba(239, 68, 68, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.hojayfa-upload-label1 {
    display: inline-block;
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hojayfa-upload-label1:hover {
    background-color: #cc0000;
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

.hojayfa-upload-label1:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

#hojayfa-image-input1 {
    display: none;
}

/* ===========================
   CUSTOM COLOR GENERATOR SECTION
   =========================== */
.hojayfa-color-generator1 {
    margin-bottom: 40px;
    padding: 30px;
    border: 3px dashed rgba(239, 68, 68, 0.5);
    border-radius: 15px;
}

.hojayfa-generator-title1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ff0000;
    text-align: center;
}

.hojayfa-color-input-wrapper1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hojayfa-color-picker1 {
    width: 80px;
    height: 80px;
    border: 3px solid #ff0000;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.hojayfa-color-picker1:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
}

.hojayfa-generated-hex1 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #111111;
    padding: 15px 30px;
    border: 2px solid #ff0000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hojayfa-generated-hex1:hover {
    background-color: #ff0000;
    transform: scale(1.05);
}

.hojayfa-show-formats-btn {
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hojayfa-show-formats-btn:hover {
    background-color: #cc0000;
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

.hojayfa-show-formats-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

/* ===========================
   FORMATS DISPLAY SECTIONS
   =========================== */
.hojayfa-custom-formats-display,
.hojayfa-picked-formats-display,
.hojayfa-selected-color-section {
    display: none;
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #ff0000;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.hojayfa-custom-formats-display.active,
.hojayfa-picked-formats-display.active,
.hojayfa-selected-color-section.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hojayfa-formats-heading {
    font-size: 1.3rem;
    color: #ff0000;
    margin-bottom: 20px;
    margin-top: 20px;
    text-shadow: 0 0 10px #ff0000;
}

.hojayfa-formats-heading:first-child {
    margin-top: 0;
}

.hojayfa-formats-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.hojayfa-format-item {
    background-color: #111111;
    border: 2px solid #444444;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hojayfa-format-item:hover {
    border-color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    background-color: rgba(255, 0, 0, 0.05);
}

.hojayfa-format-label {
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hojayfa-format-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

/* ===========================
   SELECTED COLOR DETAILS
   =========================== */
.hojayfa-selected-color-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
    flex-wrap: wrap;
}

.hojayfa-selected-color-preview {
    width: 100px;
    height: 100px;
    border: 3px solid #ff0000;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.hojayfa-selected-color-info {
    flex: 1;
    min-width: 0;
}

.hojayfa-selected-color-code {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 5px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hojayfa-selected-color-name {
    font-size: 1.1rem;
    color: #cccccc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===========================
   COLOR VARIATIONS
   =========================== */
.hojayfa-variations-container {
    margin-bottom: 30px;
}

.hojayfa-variation-section {
    margin-bottom: 25px;
}

.hojayfa-variation-section h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.hojayfa-variation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
}

.hojayfa-variation-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.hojayfa-variation-item:hover {
    transform: scale(1.1);
}

.hojayfa-variation-color {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    border: 2px solid #444444;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hojayfa-variation-label {
    text-align: center;
    font-size: 0.85rem;
    color: #cccccc;
    margin-bottom: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hojayfa-variation-value {
    text-align: center;
    font-size: 0.75rem;
    color: #999999;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===========================
   COLOR BLINDNESS SIMULATION
   =========================== */
.hojayfa-blindness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.hojayfa-blindness-item {
    background-color: #111111;
    border: 2px solid #444444;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hojayfa-blindness-item:hover {
    border-color: #ff0000;
    transform: translateY(-2px);
    background-color: rgba(255, 0, 0, 0.05);
}

.hojayfa-blindness-colors {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.hojayfa-blindness-color {
    flex: 1;
    height: 60px;
    border-radius: 8px;
    border: 2px solid #333333;
}

.hojayfa-blindness-name {
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hojayfa-blindness-info {
    font-size: 0.85rem;
    color: #999999;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hojayfa-blindness-similarity {
    font-size: 0.9rem;
    color: #ff0000;
    font-weight: bold;
}

/* ===========================
   COLOR PSYCHOLOGY
   =========================== */
.hojayfa-psychology-container {
    margin-bottom: 20px;
}

.hojayfa-psychology-section {
    margin-bottom: 20px;
}

.hojayfa-psychology-section h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.hojayfa-psychology-content {
    background-color: #111111;
    border: 2px solid #444444;
    border-radius: 10px;
    padding: 20px;
    color: #cccccc;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ===========================
   IMAGE PREVIEW SECTION WITH EYEDROPPER
   =========================== */
.hojayfa-preview-section1 {
    margin-bottom: 40px;
    display: none;
}

.hojayfa-preview-section1.hojayfa-active1 {
    display: block;
}

.hojayfa-section-title {
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px #ff0000;
}

.hojayfa-preview-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hojayfa-preview-container1 {
    position: relative;
    display: inline-block;
    max-width: 100%;
    border: 3px solid #ff0000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    cursor: crosshair;
}

.hojayfa-image-canvas {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
}

.hojayfa-eyedropper-cursor {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.5);
    z-index: 100;
}

.hojayfa-preview-container1:hover .hojayfa-eyedropper-cursor {
    display: block;
}

.hojayfa-eyedropper-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    max-width: 100%;
    flex-wrap: wrap;
}

.hojayfa-picked-color-preview {
    width: 80px;
    height: 80px;
    border: 3px solid #ff0000;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background-color: #000000;
    flex-shrink: 0;
}

.hojayfa-picked-color-details {
    flex: 1;
    min-width: 0;
}

.hojayfa-picked-color-code {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* ===========================
   COLORS SECTION
   =========================== */
.hojayfa-colors-section1 {
    display: none;
    margin-bottom: 40px;
}

.hojayfa-colors-section1.hojayfa-active1 {
    display: block;
}

.hojayfa-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.hojayfa-colors-title1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ff0000;
}

.hojayfa-color-count1 {
    font-size: 1rem;
    color: #cccccc;
}

.hojayfa-colors-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.hojayfa-dominant-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 25px;
}

.hojayfa-color-box1 {
    background-color: #111111;
    border: 2px solid #ff0000;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hojayfa-color-box1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,0,0,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hojayfa-color-box1:hover::before {
    opacity: 1;
}

.hojayfa-color-box1:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    border-color: #ffffff;
}

.hojayfa-color-sample1 {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hojayfa-dominant-grid .hojayfa-color-sample1 {
    height: 100px;
}

.hojayfa-color-hex1 {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.hojayfa-color-percentage {
    font-size: 0.75rem;
    color: #999999;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===========================
   SHUFFLE BUTTON
   =========================== */
.hojayfa-shuffle-button {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hojayfa-shuffle-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hojayfa-shuffle-button:hover::before {
    width: 300px;
    height: 300px;
}

.hojayfa-shuffle-button:hover {
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

.hojayfa-shuffle-button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

/* ===========================
   LOADING & STATUS MESSAGES
   =========================== */
.hojayfa-loading1 {
    display: none;
    margin: 30px 0;
    font-size: 1.1rem;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    text-align: center;
}

.hojayfa-loading1.hojayfa-active1 {
    display: block;
}

.hojayfa-status-message1 {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.6);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.5s ease;
    z-index: 10000;
}

.hojayfa-status-message1.hojayfa-show1 {
    opacity: 1;
    transform: translateX(0);
}

/* ===========================
   RESET BUTTON
   =========================== */
.hojayfa-reset-button1 {
    background-color: #ff0000;
    color: #ffffff;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hojayfa-reset-button1:hover {
    background-color: #cc0000;
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

.hojayfa-reset-button1:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

/* ===========================
   ANIMATION CLASSES
   =========================== */
@keyframes shuffle-animation {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.shuffling {
    animation: shuffle-animation 0.5s ease-in-out;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .hojayfa-container1 {
        padding: 30px 15px;
    }

    .hojayfa-neon-title1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hojayfa-subtitle1 {
        font-size: 0.9rem;
    }

    .hojayfa-upload-section1,
    .hojayfa-color-generator1 {
        padding: 20px;
    }

    .hojayfa-upload-label1 {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .hojayfa-generator-title1 {
        font-size: 1.3rem;
    }

    .hojayfa-color-picker1 {
        width: 60px;
        height: 60px;
    }

    .hojayfa-generated-hex1 {
        font-size: 1rem;
        padding: 12px 20px;
        max-width: 200px;
    }

    .hojayfa-show-formats-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hojayfa-eyedropper-info {
        flex-direction: column;
        text-align: center;
    }

    .hojayfa-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hojayfa-shuffle-button {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
    }

    .hojayfa-colors-grid1 {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }

    .hojayfa-dominant-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .hojayfa-color-sample1 {
        height: 60px;
    }

    .hojayfa-dominant-grid .hojayfa-color-sample1 {
        height: 80px;
    }

    .hojayfa-colors-title1 {
        font-size: 1.5rem;
    }

    .hojayfa-formats-grid-container {
        grid-template-columns: 1fr;
    }

    .hojayfa-variation-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }

    .hojayfa-blindness-grid {
        grid-template-columns: 1fr;
    }

    .hojayfa-selected-color-header {
        flex-direction: column;
        text-align: center;
    }

    .hojayfa-selected-color-code {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hojayfa-neon-title1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hojayfa-subtitle1 {
        font-size: 0.85rem;
    }

    .hojayfa-upload-section1,
    .hojayfa-color-generator1 {
        padding: 15px;
    }

    .hojayfa-upload-label1 {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .hojayfa-generator-title1 {
        font-size: 1.1rem;
    }

    .hojayfa-color-picker1 {
        width: 50px;
        height: 50px;
    }

    .hojayfa-generated-hex1 {
        font-size: 0.85rem;
        padding: 10px 15px;
        letter-spacing: 1px;
        max-width: 150px;
    }

    .hojayfa-picked-color-preview {
        width: 60px;
        height: 60px;
    }

    .hojayfa-picked-color-code {
        font-size: 1rem;
    }

    .hojayfa-colors-grid1 {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }

    .hojayfa-dominant-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .hojayfa-color-box1 {
        padding: 10px;
    }

    .hojayfa-color-sample1 {
        height: 50px;
    }

    .hojayfa-dominant-grid .hojayfa-color-sample1 {
        height: 70px;
    }

    .hojayfa-color-hex1 {
        font-size: 0.75rem;
    }

    .hojayfa-status-message1 {
        top: 10px;
        right: 10px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hojayfa-colors-title1 {
        font-size: 1.3rem;
    }

    .hojayfa-color-count1 {
        font-size: 0.85rem;
    }

    .hojayfa-selected-color-preview {
        width: 80px;
        height: 80px;
    }

    .hojayfa-selected-color-code {
        font-size: 1.3rem;
    }
}

@media (max-width: 360px) {
    .hojayfa-neon-title1 {
        font-size: 1.3rem;
    }

    .hojayfa-colors-grid1 {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 8px;
    }

    .hojayfa-dominant-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }

    .hojayfa-color-sample1 {
        height: 40px;
    }

    .hojayfa-dominant-grid .hojayfa-color-sample1 {
        height: 60px;
    }

    .hojayfa-generated-hex1 {
        max-width: 120px;
        font-size: 0.75rem;
    }
}