﻿@import '../Styles/styles.scss';

ColorSelector {
  margin: 0 auto;
  width: 732px;
  border-radius: 4px;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 16px;
  color: #e1e1e1;
  
  .color-selector-title {
    font-size: 42px;
    font-family: $font-secondary;
  }
  
  .buttons {
    margin-top: 6px;
    font-size: 24px;
    width: 100%;
    padding: 8px;
    gap: 8px;
    justify-content: flex-end;
    font-weight: bold;
    
    > button {
      height: 40px;
      align-items: center;
      padding: 4px 8px 0 16px;
      border-radius: 4px;
      gap: 4px;
      background-color: rgba(255, 255, 255, 0.6);
      color: black;
      
      &:hover {
        background-color: rgba(255, 255, 255, 0.4);
        transform: scale(1.02);
      }
      
      &:last-child {
        background-color: transparent;
        border: 1px solid #e1e1e1;
        color: #e1e1e1;
      }
    }
  }
}