.measure-label {
    cursor: pointer;
    border-bottom: 1px dotted #888;
    white-space: nowrap;
}
.drink-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1100px;
    margin: 20px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 4px;
}
h1 {
    text-align: center;
    margin-bottom: 24px;
}
/* ...existing code... */
#searchInput {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 0;
}
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.filters select {
    padding: 8px;
    font-size: 1em;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f9f9f9;
}
.result {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 16px;
    min-height: 180px;
    min-width: 320px;
    position: relative;
    border: 2px solid #cfcfcf;
    box-sizing: border-box;
    overflow: hidden;
    flex-wrap: wrap;
    width: 100%;
}
.result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(135deg, #e0e7ff 0px, #e0e7ff 24px, #fafafa 24px, #fafafa 48px);
    opacity: 0.18;
    border-radius: 8px;
    pointer-events: none;
    z-index: 0;
}
.result > * {
    position: relative;
    z-index: 1;
}
.cocktail-info {
    flex: 1;
    margin-left: 24px;
}
.cocktail-name {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 8px;
}
.cocktail-category {
    color: #888;
    font-size: 0.95em;
    margin-bottom: 8px;
}
.cocktail-instructions {
    font-size: 0.98em;
    color: #444;
}
/* ...existing code... */
.glass {
    position: relative;
    width: 60px;
    height: 120px;
    border-radius: 0 0 30px 30px;
    background: #e0e0e0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.glass:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.glass-segment {
    width: 100%;
    position: absolute;
    left: 0;
}
.tooltip {
    display: none;
    position: absolute;
    left: 70px;
    top: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    padding: 12px;
    min-width: 180px;
    z-index: 10;
    font-size: 0.98em;
}
.glass:hover .tooltip {
    display: block;
}
.glass-labels {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 2px;
}
.glass-label {
    font-size: 0.98em;
    font-weight: 500;
    text-shadow: 0 1px 2px #fff;
}
