.sam-requests-container {
    max-width: 700px;
    margin: 30px auto;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    color: white;
}

.sam-requests-container h2 {
    margin-top: 0;
    text-align: center;
    font-size: 28px;
}

.sam-search-box {
    position: relative;
    margin-bottom: 20px;
}

#sam-search {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#sam-search:focus {
    outline: 3px solid rgba(255,255,255,0.5);
}

#sam-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: #333;
}

.song-result {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.song-result:hover {
    background: #f8f9ff;
    transform: translateX(5px);
}

.song-result:last-child {
    border-bottom: none;
}

.song-info {
    flex: 1;
}

.song-info strong {
    color: #667eea;
    font-size: 16px;
}

.song-info .title {
    color: #333;
    display: block;
    margin-top: 3px;
}

.song-info .album {
    color: #999;
    font-size: 13px;
    display: block;
    margin-top: 3px;
}

.select-song {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
}

.select-song:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.loading, .no-results, .error {
    padding: 20px;
    text-align: center;
    color: #666;
}

#sam-selected-song {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
}

#sam-selected-song h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.selected-song-display {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

#sam-requester-name {
    width: 100%;
    padding: 12px 15px;
    margin: 15px 0;
    border: none;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
}

.sam-button {
    width: 100%;
    padding: 15px;
    background: #48bb78;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.sam-button:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72,187,120,0.4);
}

.sam-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

#sam-message {
    margin-top: 20px;
}

#sam-message .success {
    background: #48bb78;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

#sam-message .error {
    background: #f56565;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    color: white;
}

.sam-info {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}