@import url('https://fonts.googleapis.com/css2?family=Protest+Guerrilla&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{

  font-family: "Work Sans", sans-serif;
}

.Stock-card {
  width: 250px;
  border: none;
  border-radius: 8px;
  padding: 15px;
  margin: 10px;
  box-sizing: border-box;
  background-color: #008000;
}
.Stock-card:hover {
  background-color: #3e8e41;
  color: white; 
}

.Stock-card h1 {
  text-align: center;
  font-size: 20px;
  margin: 0;
}

.Stock-card .stock-img {
  width: 100%;
  height: 100%;
  border-radius: 4px;

}

.Stock-card h4 {
  font-size: 14px;
  margin: 5px 0;
}

.value-container, .high-low-container {
  display: flex;
  justify-content: space-between;
}

.stock-option {
  width: 75px;
  height: 70px;
  cursor: pointer;
  margin: 5px;
  transition: opacity 0.2s ease;
  border-radius: 8px;
  border: 5px solid #D6C0B3;
  margin-top: 18px;
  margin-bottom: 18px;
  display: inline;
}

.stock-option.selected {
  opacity: 1;
  border: 3px solid #008000;
  position: relative;
}

.stock-option.selected::after {
  content: '✔';
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: green;
  font-size: 14px;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.5);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  height: 100%;
}
.modal-body ul {
  padding-left: 20px;
  list-style-type: none;
}

.modal-body ul li {
  padding: 5px 0;
}
.bg-pranav {
  background-color: #D6C0B3;
}
.modal-title {
  font-size: 40px;
  margin-left: 110px;
}
.sudeep {
  margin-left: 185px;
}