@charset "utf-8";
/* Global Theme Variables */
:root {
  --primary-color: #073B7B;
  --secondary-color: #2980b9;
  --text-color: #ecf0f1;
  --button-hover: #1abc9c;
}

@media (min-width: 992px) {
  .main-wrapper {
    padding: 2rem;
    margin: 0 auto;
  }
}

/* CSS Document */
body {
  background: #26328C;
  background: -webkit-linear-gradient(167deg, rgba(38, 50, 140, 1) 40%, rgba(209, 18, 65, 1) 96%);
  background: -moz-linear-gradient(167deg, rgba(38, 50, 140, 1) 40%, rgba(209, 18, 65, 1) 96%);
  background: linear-gradient(167deg, rgba(38, 50, 140, 1) 40%, rgba(209, 18, 65, 1) 96%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26328C", endColorstr="#D11241", GradientType=0); 
}
.mbl-col {
  padding: 0;
}

/*body::before {
  content: "✅ Loaded!";
  display: block;
  color: lime;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}
*/

/* Default (mobile): icon stacked on top, text centered */
.mobile-btn {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
  border: solid 1px #ccc;
  box-shadow: 2px 2px 8px #000;
  padding: 15px 5px;
  border-radius: 24px;
  width: 100%;
  height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-btn i {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.mobile-btn .btn-text {
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-align: center;
}

/* Hover (same for both) */
.mobile-btn:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

/* Desktop override */
@media (min-width: 992px) {
  .mobile-btn {
    font-size: 1em;
    font-weight: 500;
    height: auto;
    padding: 0.75rem 1rem;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    border-radius: 6px;
    box-shadow: none;
    background-color: #29507a;
  }

  .mobile-btn i {
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-right: 0.5rem;
  }

  .mobile-btn .btn-text {
    text-align: left;
    display: inline;
  }
}


.btn-primary {
	background-color: #00205C;  
    transition: 0.5s;
}
.btn-primary:hover {
	 background-color: #00205C;
}
footer {
	background-color: transparent;
	color: #fff;
	font-size: 12px;
}

/* RSS Feed */
/* Container Styling */
.rss-feed-wrapper {
  padding: 15px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 100%;
  text-align: left;
}

/* RSS List Styling */
.rss-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Individual RSS Item */
.rss-item {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease-in-out;
}

/* RSS Item Hover Effect */
.rss-item:hover {
  background: #f8f9fa;
}

/* RSS Title */
.rss-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0056b3;
  text-decoration: none;
  display: block;
  margin: 5px 0px 5px 0px;
}

.rss-title:hover {
  text-decoration: underline;
}

/* RSS Description */
.rss-description {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 5px;
}

/* RSS Date */
.rss-date {
  font-size: 0.85rem;
  color: #888;
  display: block;
  margin-top: 5px;
}

/* RSS Error */
.rss-error {
  color: red;
  font-weight: bold;
}

/* Custom Install Prompt Styling */
.custom-install-prompt {
  background-color: #2c3e50; /* Dark Blue */
  border: 3px solid #2980b9; /* Slightly lighter blue border */
  color: #ecf0f1; /* Light text */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.custom-install-prompt i {
  margin-right: 5px;
}

.custom-install-prompt button {
  margin-top: 10px;
  transition: all 0.3s ease;
}

.custom-install-prompt button:hover {
  background-color: #1abc9c;
  color: #fff;
}

.pulse_button {
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}


