/* Background Colors */
.bg-own-dark {
    background-color: #1c152e;
}

.bg-own-primary {
    background-color: #2C2048 !important;
}

.bg-own-white {
    background-color: #ffffff !important;
}

.bg-own-gray {
    background-color: #d9d9d9 !important;
}

.bg-own-blue {
    background-color: #284b63 !important;
}

.bg-own-secondary {
    background-color: #E471AB !important;
}

/* Text Colors */
.color-own-dark {
    color: #2C2048 !important;
}

.color-own-primary {
    color: #2C2048 !important;
}

.color-own-secondary {
    color: #E471AB !important;
}

.color-own-white {
    color: #ffffff !important;
}

.color-own-gray {
    color: #d9d9d9 !important;
}

.color-own-blue {
    color: #284b63 !important;
}

/* Border Colors */
.border-own-dark {
    border: 1px solid #2C2048 !important;
}

.border-own-primary {
    border: 1px solid #2C2048 !important;
}

.border-own-gray {
    border: 1px solid #d9d9d9 !important;
}

.border-own-blue {
    border: 1px solid #284b63 !important;
}

/* Button Styles */
.btn-own-dark {
    background-color: #2C2048 !important;
    color: #ffffff !important;
    border: none;
}

.btn-own-dark:hover {
    background-color: #1f1f1f !important;
}

/* Primary Button (Greenish) */
.btn-own-primary {
    background-color: #2C2048 !important;
    color: #ffffff !important;
    border: none;
}

.btn-own-primary:hover {
    background-color: #284b63 !important;
}

/* Secondary Button (Gray) */
.btn-own-gray {
    background-color: #d9d9d9 !important;
    color: #2C2048 !important;
    border: none;
}

.btn-own-gray:hover {
    background-color: #bfbfbf !important;
}

/* Blue Button */
.btn-own-blue {
    background-color: #284b63 !important;
    color: #ffffff !important;
    border: none;
}

.btn-own-blue:hover {
    background-color: #1e394d !important;
}

/* White Button */
.btn-own-white {
    background-color: #ffffff !important;
    color: #2C2048 !important;
    border: 1px solid #2C2048 !important;
}

.btn-own-white:hover {
    background-color: #f0f0f0 !important;
}

/* Outline Buttons */
.btn-outline-own-dark {
    background-color: transparent !important;
    color: #2C2048 !important;
    border: 1px solid #2C2048 !important;
}

.btn-outline-own-dark:hover {
    background-color: #2C2048 !important;
    color: #ffffff !important;
}

.btn-outline-own-primary {
    background-color: transparent !important;
    color: #2C2048 !important;
    border: 1px solid #2C2048 !important;
}

.btn-outline-own-primary:hover {
    background-color: #2C2048 !important;
    color: #ffffff !important;
}

.btn-outline-own-gray {
    background-color: transparent !important;
    color: #d9d9d9 !important;
    border: 1px solid #d9d9d9 !important;
}

.btn-outline-own-gray:hover {
    background-color: #d9d9d9 !important;
    color: #2C2048 !important;
}

.btn-outline-own-blue {
    background-color: transparent !important;
    color: #284b63 !important;
    border: 1px solid #284b63 !important;
}

.btn-outline-own-blue:hover {
    background-color: #284b63 !important;
    color: #ffffff !important;
}



.bg-own-primary-mono{
    background-color: #4E8E92;
}

/* Force radio button color when selected */
.bg-own-gray .form-check-input:checked {
    background-color: #284b63;
    border-color: #284b63;
}

.bg-own-gray .form-check-input:checked::before {
    background-color: #000;
}

:root {
  --bg-own-primary: #2C2048;
  --bg-own-gray: #d9d9d9;
  --bg-own-blue: #284b63;
  --bg-own-secondary: #E471AB;
  --color-own-primary: #2C2048;
  --color-own-gray: #d9d9d9;
  --color-own-blue: #284b63;
  --color-own-secondary: #E471AB;
  --border-own-primary: #2C2048;
  --border-own-gray: #d9d9d9;
  --border-own-blue: #284b63;
  --border-own-secondary: #E471AB;
  
  /* Gradient Variables */
  --primary-gradient: linear-gradient(135deg, #2C2048 0%, #E471AB 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #75818d 0%, #00f2fe 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 24px 64px rgba(0, 0, 0, 0.2);
}