.custom-select {
  appearance: none; /* For most modern browsers */
  -webkit-appearance: none; /* For Safari */
  background-color: white;
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.alert-info {
    background: lightblue;
    padding: 2px;
    border-radius: 10px;
    box-shadow: 1px 1px 20px -10px;
}
.custom-select:focus {
  outline: none;
  border-color: #007bff; /* Blue border on focus */
}

.custom-select::-ms-expand {
  display: none; /* Hides the dropdown arrow in IE */
}


::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.ticker-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: auto;
}

.left-blur {
  width: 100px;
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  right:0;
  background: linear-gradient(to left, white calc(100% - 50px), transparent 100%);
  z-index:2
}
.right-blur{
  width: 100px;
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  background: linear-gradient(to right, white calc(100% - 50px), transparent 100%);
  z-index:2
}
.ticker-wrapper {
    position: absolute;
    transform-origin: center;
}

.ticker-row {
    display: flex;
    white-space: nowrap;
    margin-bottom: 40px;
}

.ticker-row:nth-child(1) {
    animation: scroll-left 50s linear infinite;
}

.ticker-row:nth-child(2) {
    margin-top: 100px;
    animation: scroll-right 50s linear infinite;
}

.ticker-row:nth-child(3) {
    margin-top: 100px;
    animation: scroll-left 50s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(0%); }
    0% { transform: translateX(-50%); }
}

.app-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    margin: 0 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 100px;
}

.app-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    object-fit: contain;
}

.app-item span {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    text-align: center;
}