/* Finger Position Guide - New organized layout */
.finger-guide-container {
    max-width: 100%;
    margin: 0 0 30px 0;
    padding: 20px 0;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
}

.finger-guide-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.finger-guide-title h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.finger-guide-title .hand-icon {
    font-size: 28px;
    margin-right: 10px;
    color: #ff9f43;
}

.finger-guide-description {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

/* Two column layout for left and right hand */
.hands-layout {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hand-column {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.hand-column h3 {
    text-align: center;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
    font-size: 18px;
}

.finger-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.finger-card {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
}

.finger-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.color-indicator {
    width: 12px;
    height: 40px;
    border-radius: 3px;
    margin-right: 15px;
}

.finger-details {
    flex: 1;
}

.finger-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.finger-keys {
    background-color: #f7f7f7;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    color: #444;
    word-break: break-all;
}

/* Pinky (Serçe) */
.finger-card.pinky .color-indicator {
    background-color: #ff6b6b;
}

/* Ring (Yüzük) */
.finger-card.ring .color-indicator {
    background-color: #10ac84;
}

/* Middle (Orta) */
.finger-card.middle .color-indicator {
    background-color: #2e86de;
}

/* Index (İşaret) */
.finger-card.index .color-indicator {
    background-color: #feca57;
}

/* Thumb (Başparmak) */
.finger-card.thumb .color-indicator {
    background-color: #a29bfe;
}

/* Keyboard visualization */
.keyboard-container {
    margin: 30px 0;
    max-width: 100%;
    width: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    .hands-layout {
        flex-direction: column;
    }
}
