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

body {
  width: 100%;
  height: auto;
}

.my-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(24, 24, 36);
}

.container-phone-size {
  width: 500px;
  height: 100%;
  background-color: rgb(38, 38, 58);
  display: grid;
  grid-template-rows: 90% 10%;
}

.container-phone-size .base-top {
  display: grid;
  grid-template-rows: 10% 70% 20%;
  overflow: auto;
}

.container-phone-size .base-top .top-bottom {
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 5px;
}

.container-phone-size .base-top .top-title {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center; 
  margin: 20px;
  color: white;
  text-align: right;
}

.dropdown-menu {
  background-color: rgb(38, 38, 58) !important; 
}

.dropdown-menu a {
  color: white !important;
}

.dropdown-menu a:hover {
  background-color: rgb(57, 57, 80) !important;
}

.container-phone-size .base-top .top-title p {
  margin-bottom: 0 !important;
  text-align: left;
}

.alarm-base {
  color: white;
  margin: 20px;
  background-color: rgb(57, 57, 80);
  border-radius: 8px;
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  cursor: pointer;
}

.alarm-base:hover {
  background-color: rgb(67, 67, 100);
  border: 1px solid salmon;
}

#alarm-clock {
  font-size: 50px;
}

.alarm-base .right {
  align-items: end;
  text-align: right;
  display: flex;
  flex-direction: column;
}

.alarm-on-off, .alarm-on-off input {
  display: inline;
  padding: 0 !important;
  margin-top: 40px !important;
}

.container-phone-size .base-bottom {
  background-color: rgb(57, 57, 80);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.container-phone-size .base-bottom .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
}

.container-phone-size .base-bottom .menu p {
  margin-bottom: 0 !important;
}

.title-menu-custom {
  margin-top: 10px;
  color: white;
  font-size: 17px;
}

.ic-menu-custom {
  color: white;
  font-size: 25px;
}

.bg-ic-menu {
  width: 80%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center; 
}

.bg-ic-menu:hover {
  background-color: rgb(38, 38, 58);
  border-radius: 15px;
}

.circle-add {
  background-color: rgb(66, 91, 172);
  width: 140px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; 
  font-size: 40px;
  color: white;
  border-radius: 100%;
}

.circle-add:hover {
  background-color: rgb(81, 110, 204); 
}

/* Max adalah elemen akan diberikan ketika lebar layar kurang dari max-width */
@media only screen and (max-width: 700px) {
  .container-phone-size {
    width: 100%;
    height: 100vh;
  }
}