
.flavour_container{
display: flex;
    gap: 50px;
    width: 1440px;
    margin: 0 auto;
    margin-top: 40px;
}

.flavour_header{
	width: 1440px;
	margin: 0 auto;
	text-align: center;
	padding: 40px 0px;
}

.flavour_header h1{
color: #5d4037;
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.flavour_header .subtitle {
  color: #8d6e63;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}



 .flavor-wheel-section, .tasting-log-section {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .section-title {
            color: #6d4c41;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d7ccc8;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            color: #a1887f;
        }

        .flavor-wheel-container {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .wheel {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background: radial-gradient(circle, #8d6e63 0%, #5d4037 100%);
            transition: all 0.3s ease;
        }

        .wheel-segment {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            clip-path: polygon(50% 50%, 50% 0%, 100% 0%);
            transform-origin: 50% 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s, opacity 0.2s;
        }

        .wheel-segment:hover {
            transform: scale(1.05);
            opacity: 0.9;
        }

        .segment-label {
            position: absolute;
            top: 30%;
            left: 65%;
            transform: rotate(45deg);
            color: white;
            font-weight: bold;
            font-size: 14px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            pointer-events: none;
            text-align: center;
            width: 80px;
        }

        .wheel-center {
            position: absolute;
	    text-align: center;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: #3e2723;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            z-index: 10;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        }

        .selected-flavor {
            background-color: #f9f3f0;
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            border-left: 4px solid #8d6e63;
        }

        .selected-flavor h3 {
            color: #5d4037;
            margin-bottom: 5px;
        }

        .selected-flavor p {
            color: #795548;
        }

        .tasting-form {
            display: grid;
            gap: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        label {
            margin-bottom: 5px;
            color: #5d4037;
            font-weight: 600;
        }

        input, select, textarea {
            padding: 12px;
            border: 1px solid #d7ccc8;
            border-radius: 8px;
            font-size: 16px;
            background-color: #fff;
            transition: border 0.3s;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #8d6e63;
            box-shadow: 0 0 0 2px rgba(141, 110, 99, 0.2);
        }

        .rating-container {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .rating {
            display: flex;
            gap: 5px;
        }

        .rating i {
            color: #d7ccc8;
            font-size: 24px;
            cursor: pointer;
            transition: color 0.2s;
        }

        .rating i.active {
            color: #ff9800;
        }

        .buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        button {
            flex: 1;
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .save-btn {
            background-color: #8d6e63;
            color: white;
        }

        .save-btn:hover {
            background-color: #6d4c41;
        }

        .print-btn {
            background-color: #d7ccc8;
            color: #5d4037;
        }

        .print-btn:hover {
            background-color: #bcaaa4;
        }

        .tasting-entries {
            margin-top: 30px;
        }

        .entry {
            background-color: #f9f3f0;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            border-left: 4px solid #a1887f;
        }

        .entry-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .entry-name {
            font-size: 1.2rem;
            color: #5d4037;
            font-weight: 600;
        }

        .entry-rating {
            color: #ff9800;
        }

        .entry-details {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
            margin-bottom: 10px;
        }

        .entry-flavors {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .flavor-tag {
            background-color: #d7ccc8;
            color: #5d4037;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
        }

        .no-entries {
            text-align: center;
            color: #8d6e63;
            padding: 30px;
            font-style: italic;
        }

        footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #d7ccc8;
            color: #8d6e63;
            font-size: 0.9rem;
        }

        @media (max-width: 1100px) {
            .container {
                flex-direction: column;
            }
            
            .flavor-wheel-container {
                height: 400px;
            }
            
            .wheel {
                width: 380px;
                height: 380px;
            }
        }

        @media (max-width: 768px) {
            .flavor-wheel-container {
                height: 350px;
            }
            
            .wheel {
                width: 320px;
                height: 320px;
            }
            
            .segment-label {
                font-size: 12px;
                width: 60px;
                left: 70%;
            }
            
            h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .flavor-wheel-container {
                height: 300px;
            }
            
            .wheel {
                width: 280px;
                height: 280px;
            }
            
            .segment-label {
                font-size: 10px;
                width: 50px;
            }
            
            .wheel-center {
                width: 80px;
                height: 80px;
                font-size: 16px;
            }
            
            .buttons {
                flex-direction: column;
            }
        }